Selaa lähdekoodia

1、Servlet/JSP Spec:3.0/2.2;

xueli.xue 9 vuotta sitten
vanhempi
commit
aa812e1531
4 muutettua tiedostoa jossa 27 lisäystä ja 25 poistoa
  1. 14 11
      README.md
  2. 2 2
      pom.xml
  3. 6 7
      xxl-job-admin/pom.xml
  4. 5 5
      xxl-job-core/pom.xml

+ 14 - 11
README.md Näytä tiedosto

@@ -86,10 +86,11 @@ XXL-JOB是一个轻量级分布式任务调度框架,其核心设计目标是
86 86
 ![输入图片说明](https://static.oschina.net/uploads/img/201607/23221244_nq9a.png "在这里输入图片标题")
87 87
 
88 88
 #### 1.5 环境
89
-- Maven3+
90
-- Jdk1.7+
91
-- Tomcat7+
92
-- Mysql5.5+
89
+- Servlet/JSP Spec:3.0/2.2
90
+- Jdk:1.7+
91
+- Tomcat:7+
92
+- Maven:3+
93
+- Mysql:5.5+
93 94
 
94 95
 
95 96
 ## 二、快速入门
@@ -686,19 +687,21 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
686 687
 - 8、"调度中心"自动注册和发现,failover: 调度中心周期性自动注册, 任务回调时可以感知在线的所有调度中心地址, 通过failover的方式进行任务回调,避免回调单点风险。
687 688
 
688 689
 #### 6.10 版本 V1.5.1 特性
689
-- 1、代码优化,POM清理;
690
-- 2、Spring升级至3.2.17.RELEASE版本;
691
-- 3、Jetty升级新版本;
692
-- 4、集群执行器选择规则自定义:单点=选择第一个,随机=随机选择一个;
690
+- 1、代码优化,POM清理,clean code;
691
+- 2、Servlet/JSP Spec指定为3.0/2.2
692
+- 3、Spring升级至3.2.17.RELEASE版本;
693
+- 4、Jetty升级版本至8.2.0.v20160908;
694
+
693 695
 
694 696
 #### 规划中
697
+- 1、集群执行器选择规则自定义:单点=选择第一个,随机=随机选择一个;
698
+- 2、支持脚本JOB, 即shell/python/php等, glue实现;
695 699
 - 3、任务执行规则自定义:假如前一个任务正在执行,后续调度执行规则支持自定义;
696 700
     串行(默认,当前逻辑):后续调度入调度队列;
697 701
     并行:后续调度并行执行;
698 702
     Pass:后续调度被Pass;
699
-- 4、兼容oracle;
700
-- 5、后续优化:在线修改密码,
701
-- 6、支持脚本JOB, 即shell/python/php等, glue实现;
703
+- 4、后续优化:在线修改密码;
704
+- 5、兼容oracle;
702 705
 
703 706
 ## 七、其他
704 707
 

+ 2 - 2
pom.xml Näytä tiedosto

@@ -23,8 +23,8 @@
23 23
 				<artifactId>maven-compiler-plugin</artifactId>
24 24
 				<version>3.1</version>
25 25
 				<configuration>
26
-					<source>1.6</source>
27
-					<target>1.6</target>
26
+					<source>1.7</source>
27
+					<target>1.7</target>
28 28
 					<encoding>UTF8</encoding>
29 29
 				</configuration>
30 30
 			</plugin>

+ 6 - 7
xxl-job-admin/pom.xml Näytä tiedosto

@@ -80,14 +80,13 @@
80 80
 		<!-- servlet -->
81 81
 		<dependency>
82 82
 			<groupId>javax.servlet</groupId>
83
-			<artifactId>servlet-api</artifactId>
84
-			<version>2.5</version>
85
-			<!--<scope>provided</scope>-->
83
+			<artifactId>javax.servlet-api</artifactId>
84
+			<version>3.0.1</version>
86 85
 		</dependency>
87 86
 		<dependency>
88 87
 			<groupId>javax.servlet.jsp</groupId>
89 88
 			<artifactId>jsp-api</artifactId>
90
-			<version>2.1</version>
89
+			<version>2.2</version>
91 90
 		</dependency>
92 91
 
93 92
 		<!-- junit -->
@@ -128,21 +127,21 @@
128 127
 			<artifactId>httpclient</artifactId>
129 128
 			<version>4.3.6</version>
130 129
 		</dependency>
131
-		
130
+
132 131
 		<!-- javax.mail -->
133 132
 		<dependency>
134 133
 			<groupId>javax.mail</groupId>
135 134
 			<artifactId>mail</artifactId>
136 135
 			<version>1.4.6</version>
137 136
 		</dependency>
138
-		
137
+
139 138
 		<!-- quartz :quartz-2.2.3/c3p0-0.9.1.1/slf4j-api-1.6.6 -->
140 139
 		<dependency>
141 140
 			<groupId>org.quartz-scheduler</groupId>
142 141
 			<artifactId>quartz</artifactId>
143 142
 			<version>2.2.3</version>
144 143
 		</dependency>
145
-		
144
+
146 145
 		<!-- xxl-job-core -->
147 146
 		<dependency>
148 147
 			<groupId>com.xuxueli</groupId>

+ 5 - 5
xxl-job-core/pom.xml Näytä tiedosto

@@ -17,22 +17,22 @@
17 17
 		<!-- servlet -->
18 18
 		<dependency>
19 19
 			<groupId>javax.servlet</groupId>
20
-			<artifactId>servlet-api</artifactId>
21
-			<version>2.5</version>
20
+			<artifactId>javax.servlet-api</artifactId>
21
+			<version>3.0.1</version>
22 22
 		</dependency>
23 23
 		<dependency>
24 24
 			<groupId>javax.servlet.jsp</groupId>
25 25
 			<artifactId>jsp-api</artifactId>
26
-			<version>2.1</version>
26
+			<version>2.2</version>
27 27
 		</dependency>
28 28
 
29 29
 		<!-- jetty -->
30 30
 		<dependency>
31 31
 			<groupId>org.eclipse.jetty</groupId>
32 32
 			<artifactId>jetty-server</artifactId>
33
-			<version>7.6.19.v20160209</version>
33
+			<version>8.2.0.v20160908</version>
34 34
 		</dependency>
35
-				
35
+
36 36
 		<!-- slf4j -->
37 37
 		<dependency>
38 38
 			<groupId>org.slf4j</groupId>