|
12 | 12 | <java.version>1.8</java.version>
|
13 | 13 | <spring.version>4.3.0.RELEASE</spring.version>
|
14 | 14 | <mysql.version>5.1.25</mysql.version>
|
15 |
| - <mybatis.version>3.2.7</mybatis.version> |
16 | 15 | </properties>
|
17 | 16 |
|
18 | 17 | <dependencies>
|
|
34 | 33 | <version>2.7.3</version>
|
35 | 34 | </dependency>
|
36 | 35 |
|
37 |
| - <dependency> |
38 |
| - <groupId>commons-collections</groupId> |
39 |
| - <artifactId>commons-collections</artifactId> |
40 |
| - <version>3.2.1</version> |
41 |
| - </dependency> |
42 |
| - |
43 |
| - <dependency> |
44 |
| - <groupId>mysql</groupId> |
45 |
| - <artifactId>mysql-connector-java</artifactId> |
46 |
| - <version>${mysql.version}</version> |
47 |
| - </dependency> |
48 |
| - <dependency> |
49 |
| - <groupId>com.alibaba</groupId> |
50 |
| - <artifactId>druid</artifactId> |
51 |
| - <version>1.0.22</version> |
52 |
| - </dependency> |
53 |
| - |
54 | 36 | <dependency>
|
55 | 37 | <groupId>javax.servlet</groupId>
|
56 | 38 | <artifactId>javax.servlet-api</artifactId>
|
|
110 | 92 | <artifactId>jackson-mapper-asl</artifactId>
|
111 | 93 | <version>1.9.12</version>
|
112 | 94 | </dependency>
|
| 95 | + |
113 | 96 | <dependency>
|
114 | 97 | <groupId>org.codehaus.jackson</groupId>
|
115 | 98 | <artifactId>jackson-mapper-lgpl</artifactId>
|
|
121 | 104 | <version>1.9.12</version>
|
122 | 105 | </dependency>
|
123 | 106 |
|
124 |
| - <dependency> |
125 |
| - <groupId>org.mybatis</groupId> |
126 |
| - <artifactId>mybatis</artifactId> |
127 |
| - <version>${mybatis.version}</version> |
128 |
| - </dependency> |
129 |
| - <dependency> |
130 |
| - <groupId>org.mybatis</groupId> |
131 |
| - <artifactId>mybatis-spring</artifactId> |
132 |
| - <version>1.2.2</version> |
133 |
| - </dependency> |
134 |
| - |
135 | 107 | <dependency>
|
136 | 108 | <groupId>org.slf4j</groupId>
|
137 | 109 | <artifactId>slf4j-log4j12</artifactId>
|
|
143 | 115 | <artifactId>log4j</artifactId>
|
144 | 116 | <version>1.2.17</version>
|
145 | 117 | </dependency>
|
146 |
| - |
147 |
| - <dependency> |
148 |
| - <groupId>org.apache.commons</groupId> |
149 |
| - <artifactId>commons-lang3</artifactId> |
150 |
| - <version>3.4</version> |
151 |
| - </dependency> |
152 |
| - |
153 |
| - <dependency> |
154 |
| - <groupId>org.aspectj</groupId> |
155 |
| - <artifactId>aspectjweaver</artifactId> |
156 |
| - <version>1.8.9</version> |
157 |
| - </dependency> |
158 |
| - <dependency> |
159 |
| - <groupId>org.quartz-scheduler</groupId> |
160 |
| - <artifactId>quartz</artifactId> |
161 |
| - <version>2.2.2</version> |
162 |
| - </dependency> |
163 | 118 |
|
164 | 119 | </dependencies>
|
165 | 120 |
|
|
177 | 132 | </configuration>
|
178 | 133 | </plugin>
|
179 | 134 | <!-- 配置Tomcat插件 -->
|
180 |
| - <!-- <plugin> |
| 135 | + <plugin> |
181 | 136 | <groupId>org.apache.tomcat.maven</groupId>
|
182 | 137 | <artifactId>tomcat7-maven-plugin</artifactId>
|
| 138 | + <version>2.2</version> |
183 | 139 | <configuration>
|
184 | 140 | <path>/</path>
|
185 | 141 | </configuration>
|
186 |
| - </plugin> --> |
| 142 | + </plugin> |
187 | 143 | </plugins>
|
188 | 144 | </build>
|
189 | 145 | </project>
|
0 commit comments