|
|
@@ -9,10 +9,6 @@
|
|
9
|
9
|
<artifactId>xxl-job-admin</artifactId>
|
|
10
|
10
|
<packaging>war</packaging>
|
|
11
|
11
|
|
|
12
|
|
- <properties>
|
|
13
|
|
- <spring.version>3.2.18.RELEASE</spring.version>
|
|
14
|
|
- </properties>
|
|
15
|
|
-
|
|
16
|
12
|
<dependencies>
|
|
17
|
13
|
<!-- springframe start -->
|
|
18
|
14
|
<dependency>
|
|
|
@@ -40,59 +36,59 @@
|
|
40
|
36
|
<dependency>
|
|
41
|
37
|
<groupId>org.aspectj</groupId>
|
|
42
|
38
|
<artifactId>aspectjweaver</artifactId>
|
|
43
|
|
- <version>1.8.7</version>
|
|
|
39
|
+ <version>${aspectjweaver.version}</version>
|
|
44
|
40
|
</dependency>
|
|
45
|
41
|
<!-- jackson (support spring json) -->
|
|
46
|
42
|
<dependency>
|
|
47
|
43
|
<groupId>org.codehaus.jackson</groupId>
|
|
48
|
44
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
49
|
|
- <version>1.9.13</version>
|
|
|
45
|
+ <version>${jackson-mapper-asl.version}</version>
|
|
50
|
46
|
</dependency>
|
|
51
|
47
|
|
|
52
|
48
|
<!-- slf4j -->
|
|
53
|
49
|
<dependency>
|
|
54
|
50
|
<groupId>org.slf4j</groupId>
|
|
55
|
51
|
<artifactId>slf4j-log4j12</artifactId>
|
|
56
|
|
- <version>1.7.25</version>
|
|
|
52
|
+ <version>${slf4j-api.version}</version>
|
|
57
|
53
|
</dependency>
|
|
58
|
54
|
|
|
59
|
55
|
<!-- freemarker -->
|
|
60
|
56
|
<dependency>
|
|
61
|
57
|
<groupId>org.freemarker</groupId>
|
|
62
|
58
|
<artifactId>freemarker</artifactId>
|
|
63
|
|
- <version>2.3.20</version>
|
|
|
59
|
+ <version>${freemarker.version}</version>
|
|
64
|
60
|
</dependency>
|
|
65
|
61
|
|
|
66
|
62
|
<!-- commons-beanutils -->
|
|
67
|
63
|
<dependency>
|
|
68
|
64
|
<groupId>commons-beanutils</groupId>
|
|
69
|
65
|
<artifactId>commons-beanutils</artifactId>
|
|
70
|
|
- <version>1.9.2</version>
|
|
|
66
|
+ <version>${commons-beanutils.version}</version>
|
|
71
|
67
|
</dependency>
|
|
72
|
68
|
<!-- commons-lang -->
|
|
73
|
69
|
<dependency>
|
|
74
|
70
|
<groupId>commons-lang</groupId>
|
|
75
|
71
|
<artifactId>commons-lang</artifactId>
|
|
76
|
|
- <version>2.6</version>
|
|
|
72
|
+ <version>${commons-lang.version}</version>
|
|
77
|
73
|
</dependency>
|
|
78
|
74
|
|
|
79
|
75
|
<!-- servlet -->
|
|
80
|
76
|
<dependency>
|
|
81
|
77
|
<groupId>javax.servlet</groupId>
|
|
82
|
78
|
<artifactId>javax.servlet-api</artifactId>
|
|
83
|
|
- <version>3.0.1</version>
|
|
|
79
|
+ <version>${javax.servlet-api.version}</version>
|
|
84
|
80
|
</dependency>
|
|
85
|
81
|
<dependency>
|
|
86
|
82
|
<groupId>javax.servlet.jsp</groupId>
|
|
87
|
83
|
<artifactId>jsp-api</artifactId>
|
|
88
|
|
- <version>2.2</version>
|
|
|
84
|
+ <version>${jsp-api.version}</version>
|
|
89
|
85
|
</dependency>
|
|
90
|
86
|
|
|
91
|
87
|
<!-- junit -->
|
|
92
|
88
|
<dependency>
|
|
93
|
89
|
<groupId>junit</groupId>
|
|
94
|
90
|
<artifactId>junit</artifactId>
|
|
95
|
|
- <version>4.11</version>
|
|
|
91
|
+ <version>${junit.version}</version>
|
|
96
|
92
|
<scope>test</scope>
|
|
97
|
93
|
</dependency>
|
|
98
|
94
|
|
|
|
@@ -100,45 +96,46 @@
|
|
100
|
96
|
<dependency>
|
|
101
|
97
|
<groupId>com.mchange</groupId>
|
|
102
|
98
|
<artifactId>c3p0</artifactId>
|
|
103
|
|
- <version>0.9.5.2</version>
|
|
|
99
|
+ <version>${c3p0.version}</version>
|
|
|
100
|
+ </dependency>
|
|
|
101
|
+ <!-- mysql-connector -->
|
|
|
102
|
+ <dependency>
|
|
|
103
|
+ <groupId>mysql</groupId>
|
|
|
104
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
105
|
+ <version>${mysql-connector-java.version}</version>
|
|
104
|
106
|
</dependency>
|
|
105
|
107
|
<!-- mybatis-spring -->
|
|
106
|
108
|
<dependency>
|
|
107
|
109
|
<groupId>org.mybatis</groupId>
|
|
108
|
110
|
<artifactId>mybatis-spring</artifactId>
|
|
109
|
|
- <version>1.2.2</version>
|
|
|
111
|
+ <version>${mybatis-spring.version}</version>
|
|
110
|
112
|
</dependency>
|
|
111
|
113
|
<dependency>
|
|
112
|
114
|
<groupId>org.mybatis</groupId>
|
|
113
|
115
|
<artifactId>mybatis</artifactId>
|
|
114
|
|
- <version>3.2.8</version>
|
|
115
|
|
- </dependency>
|
|
116
|
|
- <!-- mysql-connector -->
|
|
117
|
|
- <dependency>
|
|
118
|
|
- <groupId>mysql</groupId>
|
|
119
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
120
|
|
- <version>5.1.29</version>
|
|
|
116
|
+ <version>${mybatis.version}</version>
|
|
121
|
117
|
</dependency>
|
|
122
|
118
|
|
|
|
119
|
+
|
|
123
|
120
|
<!-- httpclient -->
|
|
124
|
121
|
<dependency>
|
|
125
|
122
|
<groupId>org.apache.httpcomponents</groupId>
|
|
126
|
123
|
<artifactId>httpclient</artifactId>
|
|
127
|
|
- <version>4.3.6</version>
|
|
|
124
|
+ <version>${httpclient.version}</version>
|
|
128
|
125
|
</dependency>
|
|
129
|
126
|
|
|
130
|
127
|
<!-- javax.mail -->
|
|
131
|
128
|
<dependency>
|
|
132
|
129
|
<groupId>javax.mail</groupId>
|
|
133
|
130
|
<artifactId>mail</artifactId>
|
|
134
|
|
- <version>1.4.6</version>
|
|
|
131
|
+ <version>${mail.version}</version>
|
|
135
|
132
|
</dependency>
|
|
136
|
133
|
|
|
137
|
134
|
<!-- quartz :quartz-2.2.3/c3p0-0.9.1.1/slf4j-api-1.6.6 -->
|
|
138
|
135
|
<dependency>
|
|
139
|
136
|
<groupId>org.quartz-scheduler</groupId>
|
|
140
|
137
|
<artifactId>quartz</artifactId>
|
|
141
|
|
- <version>2.3.0</version>
|
|
|
138
|
+ <version>${quartz.version}</version>
|
|
142
|
139
|
</dependency>
|
|
143
|
140
|
|
|
144
|
141
|
<!-- xxl-job-core -->
|