Browse Source

Release 版本:2.0.0

xuxueli 6 years ago
parent
commit
b990724e5f

+ 3 - 0
README.md View File

@@ -10,6 +10,9 @@
10 10
         <a href="https://travis-ci.org/xuxueli/xxl-job">
11 11
             <img src="https://travis-ci.org/xuxueli/xxl-job.svg?branch=master" >
12 12
         </a>
13
+        <a href="https://hub.docker.com/r/xuxueli/xxl-job-admin/">
14
+            <img src="https://img.shields.io/badge/docker-passing-brightgreen.svg" >
15
+        </a>
13 16
         <a href="https://maven-badges.herokuapp.com/maven-central/com.xuxueli/xxl-job/">
14 17
             <img src="https://maven-badges.herokuapp.com/maven-central/com.xuxueli/xxl-job/badge.svg" >
15 18
         </a>

+ 3 - 2
doc/XXL-JOB官方文档.md View File

@@ -1,6 +1,7 @@
1 1
 ## 《分布式任务调度平台XXL-JOB》
2 2
 
3 3
 [![Build Status](https://travis-ci.org/xuxueli/xxl-job.svg?branch=master)](https://travis-ci.org/xuxueli/xxl-job)
4
+[![Docker Status](https://img.shields.io/badge/docker-passing-brightgreen.svg)](https://hub.docker.com/r/xuxueli/xxl-job-admin/)
4 5
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.xuxueli/xxl-job/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.xuxueli/xxl-job/)
5 6
 [![GitHub release](https://img.shields.io/github/release/xuxueli/xxl-job.svg)](https://github.com/xuxueli/xxl-job/releases)
6 7
 [![License](https://img.shields.io/badge/license-GPLv3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0.html)
@@ -1330,7 +1331,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
1330 1331
 - 40、项目依赖全量升级至较新稳定版本,如spring、Jackson、groovy等等;
1331 1332
 - 41、docker支持:调度中心提供 Dockerfile 方便快速构建docker镜像; 
1332 1333
 
1333
-### 6.23 版本 V2.0.0 特性[迭代中]
1334
+### 6.23 版本 V2.0.0 特性[2018-11-04]
1334 1335
 - 1、调度中心迁移到 springboot;
1335 1336
 - 2、底层通讯组件迁移至 xxl-rpc;
1336 1337
 - 3、IP获取逻辑优化,优先遍历网卡来获取可用IP;
@@ -1344,7 +1345,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
1344 1345
 - 11、项目依赖升级 groovy 至较新稳定版本;pom清理;
1345 1346
 - 12、子任务失败重试重试逻辑优化,子任务失败时将会按照其预设的失败重试次数主动进行重试
1346 1347
 - 13、多项UI组件升级到最新版本,如:CodeMirror、Echarts、Jquery 等;
1347
-- 14、[迭代中]docker镜像,并且推送docker镜像到中央仓库,更进一步实现产品开箱即用;
1348
+- 14、提供官方docker镜像,并推送至中央仓库,更进一步实现产品开箱即用;
1348 1349
 
1349 1350
 
1350 1351
 ### TODO LIST

+ 1 - 1
pom.xml View File

@@ -3,7 +3,7 @@
3 3
 	<modelVersion>4.0.0</modelVersion>
4 4
 	<groupId>com.xuxueli</groupId>
5 5
 	<artifactId>xxl-job</artifactId>
6
-	<version>2.0.0-SNAPSHOT</version>
6
+	<version>2.0.0</version>
7 7
 	<packaging>pom</packaging>
8 8
 
9 9
 	<name>${project.artifactId}</name>

+ 1 - 6
xxl-job-admin/pom.xml View File

@@ -4,7 +4,7 @@
4 4
 	<parent>
5 5
 		<groupId>com.xuxueli</groupId>
6 6
 		<artifactId>xxl-job</artifactId>
7
-		<version>2.0.0-SNAPSHOT</version>
7
+		<version>2.0.0</version>
8 8
 	</parent>
9 9
 	<artifactId>xxl-job-admin</artifactId>
10 10
 	<packaging>jar</packaging>
@@ -69,14 +69,12 @@
69 69
 			<artifactId>spring-boot-starter-freemarker</artifactId>
70 70
 		</dependency>
71 71
 
72
-
73 72
 		<!-- mybatis-starter:mybatis + mybatis-spring + tomcat-jdbc(default) -->
74 73
 		<dependency>
75 74
 			<groupId>org.mybatis.spring.boot</groupId>
76 75
 			<artifactId>mybatis-spring-boot-starter</artifactId>
77 76
 			<version>${mybatis-spring-boot-starter.version}</version>
78 77
 		</dependency>
79
-
80 78
 		<!-- mysql -->
81 79
 		<dependency>
82 80
 			<groupId>mysql</groupId>
@@ -84,7 +82,6 @@
84 82
 			<version>${mysql-connector-java.version}</version>
85 83
 		</dependency>
86 84
 
87
-
88 85
 		<!-- commons-collections4 -->
89 86
 		<dependency>
90 87
 			<groupId>org.apache.commons</groupId>
@@ -104,7 +101,6 @@
104 101
 			<version>${commons-email.version}</version>
105 102
 		</dependency>
106 103
 
107
-
108 104
 		<!-- quartz :quartz-2.2.3/c3p0-0.9.1.1/slf4j-api-1.6.6 -->
109 105
 		<dependency>
110 106
 			<groupId>org.quartz-scheduler</groupId>
@@ -112,7 +108,6 @@
112 108
 			<version>${quartz.version}</version>
113 109
 		</dependency>
114 110
 
115
-
116 111
 		<!-- xxl-job-core -->
117 112
 		<dependency>
118 113
 			<groupId>com.xuxueli</groupId>

+ 1 - 1
xxl-job-admin/src/main/resources/i18n/message.properties View File

@@ -1,6 +1,6 @@
1 1
 admin_name=任务调度中心
2 2
 admin_name_full=分布式任务调度平台XXL-JOB
3
-admin_version=2.0.0-SNAPSHOT
3
+admin_version=2.0.0
4 4
 
5 5
 ## system
6 6
 system_tips=系统提示

+ 1 - 1
xxl-job-admin/src/main/resources/i18n/message_en.properties View File

@@ -1,6 +1,6 @@
1 1
 admin_name=Scheduling Center
2 2
 admin_name_full=Distributed Task Scheduling Platform XXL-JOB
3
-admin_version=2.0.0-SNAPSHOT
3
+admin_version=2.0.0
4 4
 
5 5
 ## system
6 6
 system_tips=System message

+ 1 - 1
xxl-job-core/pom.xml View File

@@ -4,7 +4,7 @@
4 4
 	<parent>
5 5
 		<groupId>com.xuxueli</groupId>
6 6
 		<artifactId>xxl-job</artifactId>
7
-		<version>2.0.0-SNAPSHOT</version>
7
+		<version>2.0.0</version>
8 8
 	</parent>
9 9
 	<artifactId>xxl-job-core</artifactId>
10 10
 	<packaging>jar</packaging>

+ 1 - 1
xxl-job-executor-samples/pom.xml View File

@@ -5,7 +5,7 @@
5 5
     <parent>
6 6
         <groupId>com.xuxueli</groupId>
7 7
         <artifactId>xxl-job</artifactId>
8
-        <version>2.0.0-SNAPSHOT</version>
8
+        <version>2.0.0</version>
9 9
     </parent>
10 10
     <artifactId>xxl-job-executor-samples</artifactId>
11 11
     <packaging>pom</packaging>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-frameless/pom.xml View File

@@ -6,7 +6,7 @@
6 6
     <parent>
7 7
         <groupId>com.xuxueli</groupId>
8 8
         <artifactId>xxl-job-executor-samples</artifactId>
9
-        <version>2.0.0-SNAPSHOT</version>
9
+        <version>2.0.0</version>
10 10
     </parent>
11 11
     <artifactId>xxl-job-executor-sample-frameless</artifactId>
12 12
     <packaging>jar</packaging>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-jfinal/pom.xml View File

@@ -5,7 +5,7 @@
5 5
     <parent>
6 6
         <artifactId>xxl-job-executor-samples</artifactId>
7 7
         <groupId>com.xuxueli</groupId>
8
-        <version>2.0.0-SNAPSHOT</version>
8
+        <version>2.0.0</version>
9 9
     </parent>
10 10
     <modelVersion>4.0.0</modelVersion>
11 11
     <artifactId>xxl-job-executor-sample-jfinal</artifactId>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-nutz/pom.xml View File

@@ -5,7 +5,7 @@
5 5
     <parent>
6 6
         <groupId>com.xuxueli</groupId>
7 7
         <artifactId>xxl-job-executor-samples</artifactId>
8
-        <version>2.0.0-SNAPSHOT</version>
8
+        <version>2.0.0</version>
9 9
     </parent>
10 10
     <modelVersion>4.0.0</modelVersion>
11 11
     <artifactId>xxl-job-executor-sample-nutz</artifactId>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-spring/pom.xml View File

@@ -4,7 +4,7 @@
4 4
 	<parent>
5 5
 		<groupId>com.xuxueli</groupId>
6 6
 		<artifactId>xxl-job-executor-samples</artifactId>
7
-		<version>2.0.0-SNAPSHOT</version>
7
+		<version>2.0.0</version>
8 8
 	</parent>
9 9
 	<artifactId>xxl-job-executor-sample-spring</artifactId>
10 10
 	<packaging>war</packaging>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-springboot/pom.xml View File

@@ -6,7 +6,7 @@
6 6
     <parent>
7 7
         <groupId>com.xuxueli</groupId>
8 8
         <artifactId>xxl-job-executor-samples</artifactId>
9
-        <version>2.0.0-SNAPSHOT</version>
9
+        <version>2.0.0</version>
10 10
     </parent>
11 11
     <artifactId>xxl-job-executor-sample-springboot</artifactId>
12 12
     <packaging>jar</packaging>