pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>aeeaps</groupId>
  6. <artifactId>aeeaps</artifactId>
  7. <packaging>war</packaging>
  8. <version>1.0.0</version>
  9. <properties>
  10. <lombok.version>1.16.4</lombok.version>
  11. <aspectj.version>1.8.4</aspectj.version>
  12. <cglib.version>3.1</cglib.version>
  13. <mail.version>1.4.1</mail.version>
  14. <activation.version>1.1.1</activation.version>
  15. <freemarker.version>2.3.21</freemarker.version>
  16. <spring.version>4.1.2.RELEASE</spring.version>
  17. <security.version>3.2.5.RELEASE</security.version>
  18. <spring.data.version>1.10.0.RELEASE</spring.data.version>
  19. <jackson.version>2.4.4</jackson.version>
  20. <mybatis.version>3.2.8</mybatis.version>
  21. <mybatis-spring.version>1.2.2</mybatis-spring.version>
  22. <dbcp2.version>2.0.1</dbcp2.version>
  23. <beanutils.version>1.8.3</beanutils.version>
  24. <ojdbc.version>10g</ojdbc.version>
  25. <commons-io.version>1.3.2</commons-io.version>
  26. <commons-fileupload.version>1.3.1</commons-fileupload.version>
  27. <servlet-api.version>3.1.0</servlet-api.version>
  28. <hibernate.version>4.3.7.Final</hibernate.version>
  29. <junit.version>4.12-beta-3</junit.version>
  30. <ueditor.version>1.0</ueditor.version>
  31. <commons-codec.version>1.9</commons-codec.version>
  32. <quercus.version>1.0</quercus.version>
  33. <javamail.version>1.4.1</javamail.version>
  34. <jedis.version>2.5.2</jedis.version>
  35. <slf4j.version>1.6.6</slf4j.version>
  36. <log4j.version>1.2.17</log4j.version>
  37. <maven.build.timestamp.format>yyyy-MM-dd-HH-mm</maven.build.timestamp.format>
  38. </properties>
  39. <dependencies>
  40. <!--
  41. <dependency>
  42. <groupId>javax.servlet</groupId>
  43. <artifactId>javax.servlet-api</artifactId>
  44. <version>${servlet-api.version}</version>
  45. <scope>provided</scope>
  46. </dependency>
  47. -->
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. <version>${lombok.version}</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.json</groupId>
  56. <artifactId>json</artifactId>
  57. <version>20141113</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.aspectj</groupId>
  61. <artifactId>aspectjweaver</artifactId>
  62. <version>${aspectj.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.glassfish.api</groupId>
  66. <artifactId>mail</artifactId>
  67. <version>${mail.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>javax.activation</groupId>
  71. <artifactId>activation</artifactId>
  72. <version>${activation.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.freemarker</groupId>
  76. <artifactId>freemarker</artifactId>
  77. <version>${freemarker.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-context</artifactId>
  82. <version>${spring.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-context-support</artifactId>
  87. <version>${spring.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-aop</artifactId>
  92. <version>${spring.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-jdbc</artifactId>
  97. <version>${spring.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-tx</artifactId>
  102. <version>${spring.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.data</groupId>
  106. <artifactId>spring-data-commons</artifactId>
  107. <version>${spring.data.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.security</groupId>
  111. <artifactId>spring-security-core</artifactId>
  112. <version>${security.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.mybatis</groupId>
  116. <artifactId>mybatis</artifactId>
  117. <version>${mybatis.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.mybatis</groupId>
  121. <artifactId>mybatis-spring</artifactId>
  122. <version>${mybatis-spring.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.commons</groupId>
  126. <artifactId>commons-dbcp2</artifactId>
  127. <version>${dbcp2.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>commons-beanutils</groupId>
  131. <artifactId>commons-beanutils-core</artifactId>
  132. <version>${beanutils.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework</groupId>
  136. <artifactId>spring-webmvc</artifactId>
  137. <version>${spring.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.security</groupId>
  141. <artifactId>spring-security-config</artifactId>
  142. <version>${security.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.security</groupId>
  146. <artifactId>spring-security-taglibs</artifactId>
  147. <version>${security.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.fasterxml.jackson.core</groupId>
  151. <artifactId>jackson-databind</artifactId>
  152. <version>${jackson.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.commons</groupId>
  156. <artifactId>commons-io</artifactId>
  157. <version>${commons-io.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>commons-fileupload</groupId>
  161. <artifactId>commons-fileupload</artifactId>
  162. <version>${commons-fileupload.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.springframework</groupId>
  166. <artifactId>spring-test</artifactId>
  167. <version>${spring.version}</version>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.hibernate</groupId>
  172. <artifactId>hibernate-core</artifactId>
  173. <version>${hibernate.version}</version>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>junit</groupId>
  178. <artifactId>junit</artifactId>
  179. <version>${junit.version}</version>
  180. <scope>test</scope>
  181. </dependency>
  182. <dependency>
  183. <groupId>commons-codec</groupId>
  184. <artifactId>commons-codec</artifactId>
  185. <version>${commons-codec.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.httpcomponents</groupId>
  189. <artifactId>httpclient</artifactId>
  190. <version>4.2.2</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>net.sf.json-lib</groupId>
  194. <artifactId>json-lib</artifactId>
  195. <version>2.4</version>
  196. <classifier>jdk15</classifier>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.apache.commons</groupId>
  200. <artifactId>commons-lang3</artifactId>
  201. <version>3.4</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>commons-httpclient</groupId>
  205. <artifactId>commons-httpclient</artifactId>
  206. <version>3.0.1</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.thoughtworks.xstream</groupId>
  210. <artifactId>xstream</artifactId>
  211. <version>1.4.7</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>net.sf.jxls</groupId>
  215. <artifactId>jxls-core</artifactId>
  216. <version>1.0.6</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>net.sf.jxls</groupId>
  220. <artifactId>jxls-reader</artifactId>
  221. <version>1.0.3</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>net.sf.jxls</groupId>
  225. <artifactId>jxls-examples</artifactId>
  226. <version>1.0.6</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.htmlparser</groupId>
  230. <artifactId>htmlparser</artifactId>
  231. <version>2.1</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>jexcelapi</groupId>
  235. <artifactId>jxl</artifactId>
  236. <version>2.6</version>
  237. </dependency>
  238. <!-- CACHE begin -->
  239. <dependency>
  240. <groupId>redis.clients</groupId>
  241. <artifactId>jedis</artifactId>
  242. <version>${jedis.version}</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>javax.servlet</groupId>
  246. <artifactId>jstl</artifactId>
  247. <version>1.2</version>
  248. <!-- <scope>provided</scope> -->
  249. </dependency>
  250. <dependency>
  251. <groupId>taglibs</groupId>
  252. <artifactId>standard</artifactId>
  253. <version>1.1.2</version>
  254. <!-- <scope>provided</scope> -->
  255. </dependency>
  256. <dependency>
  257. <groupId>com.alibaba</groupId>
  258. <artifactId>fastjson</artifactId>
  259. <version>1.1.15</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>com.ning</groupId>
  263. <artifactId>async-http-client</artifactId>
  264. <version>1.8.2</version>
  265. </dependency>
  266. <!-- mysql驱动包 -->
  267. <dependency>
  268. <groupId>mysql</groupId>
  269. <artifactId>mysql-connector-java</artifactId>
  270. <version>5.1.29</version>
  271. </dependency>
  272. <!-- 阿里巴巴数据源包 -->
  273. <dependency>
  274. <groupId>com.alibaba</groupId>
  275. <artifactId>druid</artifactId>
  276. <version>1.0.2</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>com.google.guava</groupId>
  280. <artifactId>guava</artifactId>
  281. <version>19.0</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>commons-jxpath</groupId>
  285. <artifactId>commons-jxpath</artifactId>
  286. <version>1.3</version>
  287. </dependency>
  288. <!-- 条形码 -->
  289. <dependency>
  290. <groupId>net.sf.barcode4j</groupId>
  291. <artifactId>barcode4j</artifactId>
  292. <version>2.1</version>
  293. </dependency>
  294. <!-- log start -->
  295. <dependency>
  296. <groupId>log4j</groupId>
  297. <artifactId>log4j</artifactId>
  298. <version>${log4j.version}</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>org.slf4j</groupId>
  302. <artifactId>slf4j-api</artifactId>
  303. <version>${slf4j.version}</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.slf4j</groupId>
  307. <artifactId>slf4j-log4j12</artifactId>
  308. <version>${slf4j.version}</version>
  309. </dependency>
  310. <dependency>
  311. <groupId>com.github.miemiedev</groupId>
  312. <artifactId>mybatis-paginator</artifactId>
  313. <version>1.2.15</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>com.linuxense</groupId>
  317. <artifactId>javadbf</artifactId>
  318. <version>0.4.0</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>org.apache.poi</groupId>
  322. <artifactId>poi</artifactId>
  323. <version>3.9</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.apache.poi</groupId>
  327. <artifactId>poi-ooxml</artifactId>
  328. <version>3.9</version>
  329. </dependency>
  330. <dependency>
  331. <groupId>net.sf.jxls</groupId>
  332. <artifactId>jxls-core</artifactId>
  333. <version>1.0.3</version>
  334. </dependency>
  335. <dependency>
  336. <groupId>net.sf.jxls</groupId>
  337. <artifactId>jxls-reader</artifactId>
  338. <version>1.0.3</version>
  339. </dependency>
  340. <dependency>
  341. <groupId>joda-time</groupId>
  342. <artifactId>joda-time</artifactId>
  343. <version>2.3</version>
  344. </dependency>
  345. <dependency>
  346. <groupId>org.quartz-scheduler</groupId>
  347. <artifactId>quartz</artifactId>
  348. <version>2.2.1</version>
  349. </dependency>
  350. <dependency>
  351. <groupId>org.springframework</groupId>
  352. <artifactId>spring-expression</artifactId>
  353. <version>${spring.version}</version>
  354. </dependency>
  355. <dependency>
  356. <groupId>org.springframework</groupId>
  357. <artifactId>spring-orm</artifactId>
  358. <version>${spring.version}</version>
  359. </dependency>
  360. <!-- Bean Validation 1.1(JSR-349) spring4才支持-->
  361. <dependency>
  362. <groupId>org.hibernate</groupId>
  363. <artifactId>hibernate-validator</artifactId>
  364. <version>5.0.2.Final</version>
  365. </dependency>
  366. </dependencies>
  367. <build>
  368. <sourceDirectory>src/main/java</sourceDirectory>
  369. <plugins>
  370. <plugin>
  371. <artifactId>maven-compiler-plugin</artifactId>
  372. <version>3.3</version>
  373. <configuration>
  374. <source>1.8</source>
  375. <target>1.8</target>
  376. <encoding>UTF-8</encoding>
  377. </configuration>
  378. </plugin>
  379. <plugin>
  380. <groupId>org.apache.maven.plugins</groupId>
  381. <artifactId>maven-war-plugin</artifactId>
  382. <version>2.3</version>
  383. <configuration>
  384. <warName>${project.artifactId}</warName>
  385. </configuration>
  386. </plugin>
  387. </plugins>
  388. </build>
  389. </project>