|
|
@@ -40,18 +40,22 @@
|
|
40
|
40
|
</dependency>
|
|
41
|
41
|
<!-- jackson (support spring json) -->
|
|
42
|
42
|
<dependency>
|
|
43
|
|
- <groupId>org.codehaus.jackson</groupId>
|
|
44
|
|
- <artifactId>jackson-mapper-asl</artifactId>
|
|
45
|
|
- <version>${jackson-mapper-asl.version}</version>
|
|
|
43
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
44
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
45
|
+ <version>${jackson.version}</version>
|
|
46
|
46
|
</dependency>
|
|
47
|
47
|
|
|
48
|
|
- <!-- slf4j -->
|
|
|
48
|
+ <!-- servlet -->
|
|
49
|
49
|
<dependency>
|
|
50
|
|
- <groupId>org.slf4j</groupId>
|
|
51
|
|
- <artifactId>slf4j-log4j12</artifactId>
|
|
52
|
|
- <version>${slf4j-api.version}</version>
|
|
|
50
|
+ <groupId>javax.servlet</groupId>
|
|
|
51
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
52
|
+ <version>${javax.servlet-api.version}</version>
|
|
|
53
|
+ </dependency>
|
|
|
54
|
+ <dependency>
|
|
|
55
|
+ <groupId>javax.servlet.jsp</groupId>
|
|
|
56
|
+ <artifactId>jsp-api</artifactId>
|
|
|
57
|
+ <version>${jsp-api.version}</version>
|
|
53
|
58
|
</dependency>
|
|
54
|
|
-
|
|
55
|
59
|
<!-- freemarker -->
|
|
56
|
60
|
<dependency>
|
|
57
|
61
|
<groupId>org.freemarker</groupId>
|
|
|
@@ -59,37 +63,37 @@
|
|
59
|
63
|
<version>${freemarker.version}</version>
|
|
60
|
64
|
</dependency>
|
|
61
|
65
|
|
|
62
|
|
- <!-- commons-beanutils -->
|
|
|
66
|
+ <!-- slf4j -->
|
|
63
|
67
|
<dependency>
|
|
64
|
|
- <groupId>commons-beanutils</groupId>
|
|
65
|
|
- <artifactId>commons-beanutils</artifactId>
|
|
66
|
|
- <version>${commons-beanutils.version}</version>
|
|
|
68
|
+ <groupId>org.slf4j</groupId>
|
|
|
69
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
70
|
+ <version>${slf4j-api.version}</version>
|
|
67
|
71
|
</dependency>
|
|
68
|
|
- <!-- commons-lang -->
|
|
|
72
|
+ <!-- junit -->
|
|
69
|
73
|
<dependency>
|
|
70
|
|
- <groupId>commons-lang</groupId>
|
|
71
|
|
- <artifactId>commons-lang</artifactId>
|
|
72
|
|
- <version>${commons-lang.version}</version>
|
|
|
74
|
+ <groupId>junit</groupId>
|
|
|
75
|
+ <artifactId>junit</artifactId>
|
|
|
76
|
+ <version>${junit.version}</version>
|
|
|
77
|
+ <scope>test</scope>
|
|
73
|
78
|
</dependency>
|
|
74
|
79
|
|
|
75
|
|
- <!-- servlet -->
|
|
|
80
|
+ <!-- commons-collections4 -->
|
|
76
|
81
|
<dependency>
|
|
77
|
|
- <groupId>javax.servlet</groupId>
|
|
78
|
|
- <artifactId>javax.servlet-api</artifactId>
|
|
79
|
|
- <version>${javax.servlet-api.version}</version>
|
|
|
82
|
+ <groupId>org.apache.commons</groupId>
|
|
|
83
|
+ <artifactId>commons-collections4</artifactId>
|
|
|
84
|
+ <version>${commons-collections4.version}</version>
|
|
80
|
85
|
</dependency>
|
|
|
86
|
+ <!-- commons-lang3 -->
|
|
81
|
87
|
<dependency>
|
|
82
|
|
- <groupId>javax.servlet.jsp</groupId>
|
|
83
|
|
- <artifactId>jsp-api</artifactId>
|
|
84
|
|
- <version>${jsp-api.version}</version>
|
|
|
88
|
+ <groupId>org.apache.commons</groupId>
|
|
|
89
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
90
|
+ <version>${commons-lang3.version}</version>
|
|
85
|
91
|
</dependency>
|
|
86
|
|
-
|
|
87
|
|
- <!-- junit -->
|
|
|
92
|
+ <!-- commons-email -->
|
|
88
|
93
|
<dependency>
|
|
89
|
|
- <groupId>junit</groupId>
|
|
90
|
|
- <artifactId>junit</artifactId>
|
|
91
|
|
- <version>${junit.version}</version>
|
|
92
|
|
- <scope>test</scope>
|
|
|
94
|
+ <groupId>org.apache.commons</groupId>
|
|
|
95
|
+ <artifactId>commons-email</artifactId>
|
|
|
96
|
+ <version>${commons-email.version}</version>
|
|
93
|
97
|
</dependency>
|
|
94
|
98
|
|
|
95
|
99
|
<!-- c3p0 -->
|
|
|
@@ -116,7 +120,6 @@
|
|
116
|
120
|
<version>${mybatis.version}</version>
|
|
117
|
121
|
</dependency>
|
|
118
|
122
|
|
|
119
|
|
-
|
|
120
|
123
|
<!-- httpclient -->
|
|
121
|
124
|
<dependency>
|
|
122
|
125
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
@@ -124,13 +127,6 @@
|
|
124
|
127
|
<version>${httpclient.version}</version>
|
|
125
|
128
|
</dependency>
|
|
126
|
129
|
|
|
127
|
|
- <!-- commons-email -->
|
|
128
|
|
- <dependency>
|
|
129
|
|
- <groupId>org.apache.commons</groupId>
|
|
130
|
|
- <artifactId>commons-email</artifactId>
|
|
131
|
|
- <version>${commons-email.version}</version>
|
|
132
|
|
- </dependency>
|
|
133
|
|
-
|
|
134
|
130
|
<!-- quartz :quartz-2.2.3/c3p0-0.9.1.1/slf4j-api-1.6.6 -->
|
|
135
|
131
|
<dependency>
|
|
136
|
132
|
<groupId>org.quartz-scheduler</groupId>
|