浏览代码

升级大版本 v1.4.0预览版,新功能coding中

xueli.xue 9 年前
父节点
当前提交
49b4a46737

+ 6 - 1
pom.xml 查看文件

3
 	<modelVersion>4.0.0</modelVersion>
3
 	<modelVersion>4.0.0</modelVersion>
4
 	<groupId>com.xxl</groupId>
4
 	<groupId>com.xxl</groupId>
5
 	<artifactId>xxl-job</artifactId>
5
 	<artifactId>xxl-job</artifactId>
6
-	<version>1.4.0-SNAPSHOT</version>
6
+	<version>${xxl-job.version}</version>
7
 	<packaging>pom</packaging>
7
 	<packaging>pom</packaging>
8
+
8
 	<modules>
9
 	<modules>
9
 		<module>xxl-job-admin</module>
10
 		<module>xxl-job-admin</module>
10
 		<module>xxl-job-core</module>
11
 		<module>xxl-job-core</module>
11
 		<module>xxl-job-executor-example</module>
12
 		<module>xxl-job-executor-example</module>
12
 	</modules>
13
 	</modules>
13
 
14
 
15
+	<properties>
16
+		<xxl-job.version>1.4.0-SNAPSHOT</xxl-job.version>
17
+	</properties>
18
+
14
 	<build>
19
 	<build>
15
 		<plugins>
20
 		<plugins>
16
 			<plugin>
21
 			<plugin>

+ 3 - 3
xxl-job-admin/pom.xml 查看文件

4
 	<parent>
4
 	<parent>
5
 		<groupId>com.xxl</groupId>
5
 		<groupId>com.xxl</groupId>
6
 		<artifactId>xxl-job</artifactId>
6
 		<artifactId>xxl-job</artifactId>
7
-		<version>1.4.0-SNAPSHOT</version>
7
+		<version>${xxl-job.version}</version>
8
 	</parent>
8
 	</parent>
9
 	<artifactId>xxl-job-admin</artifactId>
9
 	<artifactId>xxl-job-admin</artifactId>
10
-	<version>1.3.1-SNAPSHOT</version>
10
+	<version>${xxl-job.version}</version>
11
 	<packaging>war</packaging>
11
 	<packaging>war</packaging>
12
 
12
 
13
 	<properties>
13
 	<properties>
148
 		<dependency>
148
 		<dependency>
149
 			<groupId>com.xxl</groupId>
149
 			<groupId>com.xxl</groupId>
150
 			<artifactId>xxl-job-core</artifactId>
150
 			<artifactId>xxl-job-core</artifactId>
151
-			<version>1.3.2</version>
151
+			<version>${xxl-job.version}</version>
152
 		</dependency>
152
 		</dependency>
153
 
153
 
154
 	</dependencies>
154
 	</dependencies>

+ 2 - 2
xxl-job-core/pom.xml 查看文件

4
 	<parent>
4
 	<parent>
5
 		<groupId>com.xxl</groupId>
5
 		<groupId>com.xxl</groupId>
6
 		<artifactId>xxl-job</artifactId>
6
 		<artifactId>xxl-job</artifactId>
7
-		<version>1.4.0-SNAPSHOT</version>
7
+		<version>${xxl-job.version}</version>
8
 	</parent>
8
 	</parent>
9
 	<artifactId>xxl-job-core</artifactId>
9
 	<artifactId>xxl-job-core</artifactId>
10
-	<version>1.3.2</version>
10
+	<version>${xxl-job.version}</version>
11
 
11
 
12
 	<dependencies>
12
 	<dependencies>
13
 
13
 

+ 1 - 1
xxl-job-core/src/main/java/com/xxl/job/core/handler/IJobHandler.java 查看文件

9
 	/**
9
 	/**
10
 	 * job handler <br><br>
10
 	 * job handler <br><br>
11
 	 * the return Object will be and stored
11
 	 * the return Object will be and stored
12
-	 * @param param
12
+	 * @param params
13
 	 * @return 
13
 	 * @return 
14
 	 * @throws Exception
14
 	 * @throws Exception
15
 	 */
15
 	 */

+ 3 - 3
xxl-job-executor-example/pom.xml 查看文件

4
 	<parent>
4
 	<parent>
5
 		<groupId>com.xxl</groupId>
5
 		<groupId>com.xxl</groupId>
6
 		<artifactId>xxl-job</artifactId>
6
 		<artifactId>xxl-job</artifactId>
7
-		<version> 1.4.0-SNAPSHOT</version>
7
+		<version>${xxl-job.version}</version>
8
 	</parent>
8
 	</parent>
9
 	<artifactId>xxl-job-executor-example</artifactId>
9
 	<artifactId>xxl-job-executor-example</artifactId>
10
-	<version>1.3.1-SNAPSHOT</version>
10
+	<version>${xxl-job.version}</version>
11
 	<packaging>war</packaging>
11
 	<packaging>war</packaging>
12
 
12
 
13
 	<properties>
13
 	<properties>
79
 		<dependency>
79
 		<dependency>
80
 			<groupId>com.xxl</groupId>
80
 			<groupId>com.xxl</groupId>
81
 			<artifactId>xxl-job-core</artifactId>
81
 			<artifactId>xxl-job-core</artifactId>
82
-			<version>1.3.2</version>
82
+			<version>${xxl-job.version}</version>
83
 		</dependency>
83
 		</dependency>
84
 		
84
 		
85
 	</dependencies>
85
 	</dependencies>