pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.qrzh</groupId>
  5. <artifactId>qrzk-jk</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>qrzk Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <spring.version>4.1.7.RELEASE</spring.version>
  13. <spring-data.version>Fowler-RELEASE</spring-data.version>
  14. <spring.security.version>3.1.1.RELEASE</spring.security.version>
  15. <mybatis.version>3.2.7</mybatis.version>
  16. <hibernate.version>4.1.6.Final</hibernate.version>
  17. <log4j.version>1.2.13</log4j.version>
  18. <aspectj.version>1.6.5</aspectj.version>
  19. </properties>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.data</groupId>
  24. <artifactId>spring-data-releasetrain</artifactId>
  25. <version>${spring-data.version}</version>
  26. <scope>import</scope>
  27. <type>pom</type>
  28. </dependency>
  29. </dependencies>
  30. </dependencyManagement>
  31. <dependencies>
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <version>3.8.1</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-beans</artifactId>
  41. <version>${spring.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework</groupId>
  45. <artifactId>spring-webmvc</artifactId>
  46. <version>${spring.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-orm</artifactId>
  51. <version>${spring.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework</groupId>
  55. <artifactId>spring-aop</artifactId>
  56. <version>${spring.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.googlecode.ehcache-spring-annotations</groupId>
  60. <artifactId>ehcache-spring-annotations</artifactId>
  61. <version>1.1.3</version>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>cglib</groupId>
  65. <artifactId>cglib</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.data</groupId>
  71. <artifactId>spring-data-jpa</artifactId>
  72. </dependency>
  73. <!-- spring security -->
  74. <dependency>
  75. <groupId>org.springframework.security</groupId>
  76. <artifactId>spring-security-core</artifactId>
  77. <version>${spring.security.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.security</groupId>
  81. <artifactId>spring-security-web</artifactId>
  82. <version>${spring.security.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.security</groupId>
  86. <artifactId>spring-security-config</artifactId>
  87. <version>${spring.security.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.security</groupId>
  91. <artifactId>spring-security-taglibs</artifactId>
  92. <version>${spring.security.version}</version>
  93. </dependency>
  94. <!-- hibernate -->
  95. <dependency>
  96. <groupId>org.hibernate</groupId>
  97. <artifactId>hibernate-core</artifactId>
  98. <version>${hibernate.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.hibernate</groupId>
  102. <artifactId>hibernate-entitymanager</artifactId>
  103. <version>${hibernate.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.hibernate.common</groupId>
  107. <artifactId>hibernate-commons-annotations</artifactId>
  108. <version>4.0.1.Final</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.hibernate</groupId>
  112. <artifactId>hibernate-ehcache</artifactId>
  113. <version>${hibernate.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.mybatis</groupId>
  117. <artifactId>mybatis</artifactId>
  118. <version>${mybatis.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>mysql</groupId>
  122. <artifactId>mysql-connector-java</artifactId>
  123. <!-- <version>8.0.13</version> -->
  124. <version>5.1.34</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.slf4j</groupId>
  128. <artifactId>slf4j-api</artifactId>
  129. <version>1.7.7</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.slf4j</groupId>
  133. <artifactId>slf4j-log4j12</artifactId>
  134. <version>1.7.7</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.freemarker</groupId>
  138. <artifactId>freemarker</artifactId>
  139. <version>2.3.19</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>commons-dbcp</groupId>
  143. <artifactId>commons-dbcp</artifactId>
  144. <version>1.2.2</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>taglibs</groupId>
  148. <artifactId>standard</artifactId>
  149. <version>1.1.2</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.fasterxml.jackson.core</groupId>
  153. <artifactId>jackson-core</artifactId>
  154. <version>2.4.3</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.fasterxml.jackson.core</groupId>
  158. <artifactId>jackson-databind</artifactId>
  159. <version>2.4.3</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.mybatis</groupId>
  163. <artifactId>mybatis-spring</artifactId>
  164. <version>1.2.2</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>net.sf.json-lib</groupId>
  168. <artifactId>json-lib</artifactId>
  169. <version>2.4</version>
  170. <classifier>jdk15</classifier>
  171. </dependency>
  172. <dependency>
  173. <groupId>commons-fileupload</groupId>
  174. <artifactId>commons-fileupload</artifactId>
  175. <version>1.2.1</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.commons</groupId>
  179. <artifactId>commons-io</artifactId>
  180. <version>1.3.2</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.jdom</groupId>
  184. <artifactId>jdom</artifactId>
  185. <version>1.1</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>jstl</groupId>
  189. <artifactId>jstl</artifactId>
  190. <version>1.2</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>ant</groupId>
  194. <artifactId>ant</artifactId>
  195. <version>1.6.5</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.aspectj</groupId>
  199. <artifactId>aspectjweaver</artifactId>
  200. <version>1.6.11</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.poi</groupId>
  204. <artifactId>poi</artifactId>
  205. <version>3.10.1</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.bouncycastle</groupId>
  209. <artifactId>bcprov-jdk15on</artifactId>
  210. <version>1.52</version>
  211. </dependency>
  212. <dependency>
  213. <groupId>net.sf.barcode4j</groupId>
  214. <artifactId>barcode4j</artifactId>
  215. <version>2.1</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>dom4j</groupId>
  219. <artifactId>dom4j</artifactId>
  220. <version>1.6.1</version>
  221. </dependency>
  222. <!-- <dependency> <groupId>org.apache.servicemix.bundles</groupId> <artifactId>org.apache.servicemix.bundles.gentlyweb-utils</artifactId>
  223. <version>1.5_1</version> </dependency> -->
  224. <dependency>
  225. <groupId>avalon-framework</groupId>
  226. <artifactId>avalon-framework</artifactId>
  227. <version>4.1.5</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>javax.servlet</groupId>
  231. <artifactId>servlet-api</artifactId>
  232. <version>2.5</version>
  233. </dependency>
  234. <!-- <dependency>-->
  235. <!-- <groupId>com.lowagie</groupId>-->
  236. <!-- <artifactId>itext</artifactId>-->
  237. <!-- <version>2.1.7</version>-->
  238. <!-- </dependency>-->
  239. <dependency>
  240. <groupId>com.itextpdf</groupId>
  241. <artifactId>kernel</artifactId>
  242. <version>7.0.1</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>com.itextpdf</groupId>
  246. <artifactId>font-asian</artifactId>
  247. <version>7.0.1</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>com.itextpdf</groupId>
  251. <artifactId>layout</artifactId>
  252. <version>7.0.1</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>com.itextpdf</groupId>
  256. <artifactId>barcodes</artifactId>
  257. <version>7.0.1</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>com.linuxense</groupId>
  261. <artifactId>javadbf</artifactId>
  262. <version>1.0.0</version>
  263. <scope>system</scope>
  264. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/javadbf-1.0.0.jar</systemPath>
  265. </dependency>
  266. <dependency>
  267. <groupId>com.gentlyweb</groupId>
  268. <artifactId>utils</artifactId>
  269. <version>1.1.0</version>
  270. <scope>system</scope>
  271. <systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/gentlyWEB-utils-1.1.jar</systemPath>
  272. </dependency>
  273. </dependencies>
  274. <build>
  275. <finalName>qrzk</finalName>
  276. <plugins>
  277. <plugin>
  278. <groupId>org.apache.maven.plugins</groupId>
  279. <artifactId>maven-compiler-plugin</artifactId>
  280. <version>2.3.2</version>
  281. <configuration>
  282. <source>1.6</source>
  283. <target>1.6</target>
  284. </configuration>
  285. </plugin>
  286. </plugins>
  287. </build>
  288. </project>