pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  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>com.sf</groupId>
  6. <artifactId>gn_oa_vip27</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>gn_oa_vip27 Maven Webapp</name>
  10. <!-- FIXME change it to the project's website -->
  11. <url>http://www.example.com</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <version>4.12</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <!-- asm 字节码操作库 -->
  25. <dependency>
  26. <groupId>org.ow2.asm</groupId>
  27. <artifactId>asm</artifactId>
  28. <version>4.2</version>
  29. </dependency>
  30. <!-- cglib - 3.1 -->
  31. <dependency>
  32. <groupId>cglib</groupId>
  33. <artifactId>cglib</artifactId>
  34. <version>3.1</version>
  35. </dependency>
  36. <!-- commons-codec -->
  37. <dependency>
  38. <groupId>commons-codec</groupId>
  39. <artifactId>commons-codec</artifactId>
  40. <version>1.1</version>
  41. </dependency>
  42. <!-- commons-collections4 -->
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-collections4</artifactId>
  46. <version>4.4</version>
  47. </dependency>
  48. <!-- commons-fileupload -->
  49. <dependency>
  50. <groupId>commons-fileupload</groupId>
  51. <artifactId>commons-fileupload</artifactId>
  52. <version>1.4</version>
  53. </dependency>
  54. <!-- commons-io -->
  55. <dependency>
  56. <groupId>commons-io</groupId>
  57. <artifactId>commons-io</artifactId>
  58. <version>2.6</version>
  59. </dependency>
  60. <!-- curvesapi -->
  61. <dependency>
  62. <groupId>com.github.virtuald</groupId>
  63. <artifactId>curvesapi</artifactId>
  64. <version>1.04</version>
  65. </dependency>
  66. <!-- druid -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>druid</artifactId>
  70. <version>1.1.10</version>
  71. </dependency>
  72. <!-- easyexcel -->
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>easyexcel</artifactId>
  76. <version>2.2.3</version>
  77. </dependency>
  78. <!-- ehcache -->
  79. <dependency>
  80. <groupId>org.ehcache</groupId>
  81. <artifactId>ehcache</artifactId>
  82. <version>3.4.0</version>
  83. </dependency>
  84. <!-- fastjson -->
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>fastjson</artifactId>
  88. <version>1.2.53</version>
  89. </dependency>
  90. <!-- javaee-api -->
  91. <dependency>
  92. <groupId>javax</groupId>
  93. <artifactId>javaee-api</artifactId>
  94. <version>7.0</version>
  95. <scope>provided</scope>
  96. </dependency>
  97. <!--jstl标签库-->
  98. <!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/javax.servlet.jsp.jstl-api -->
  99. <dependency>
  100. <groupId>javax.servlet.jsp.jstl</groupId>
  101. <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  102. <version>1.2.1</version>
  103. <scope>provided</scope>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/jstl-api -->
  106. <dependency>
  107. <groupId>javax.servlet.jsp.jstl</groupId>
  108. <artifactId>jstl-api</artifactId>
  109. <version>1.2</version>
  110. </dependency>
  111. <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
  112. <dependency>
  113. <groupId>javax.servlet</groupId>
  114. <artifactId>jstl</artifactId>
  115. <version>1.2</version>
  116. </dependency>
  117. <!-- standard - jstl标签库的依赖包-->
  118. <!-- https://mvnrepository.com/artifact/org.apache.taglibs/taglibs-standard-impl -->
  119. <dependency>
  120. <groupId>org.apache.taglibs</groupId>
  121. <artifactId>taglibs-standard-impl</artifactId>
  122. <version>1.2.5</version>
  123. <scope>runtime</scope>
  124. </dependency>
  125. <!-- mysql-connector-java -->
  126. <dependency>
  127. <groupId>mysql</groupId>
  128. <artifactId>mysql-connector-java</artifactId>
  129. <version>5.1.47</version>
  130. </dependency>
  131. <!-- poi -->
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi</artifactId>
  135. <version>3.17</version>
  136. </dependency>
  137. <!-- poi-ooxml -->
  138. <dependency>
  139. <groupId>org.apache.poi</groupId>
  140. <artifactId>poi-ooxml</artifactId>
  141. <version>3.17</version>
  142. </dependency>
  143. <!-- poi-ooxml-schemas -->
  144. <dependency>
  145. <groupId>org.apache.poi</groupId>
  146. <artifactId>poi-ooxml-schemas</artifactId>
  147. <version>3.17</version>
  148. </dependency>
  149. <!-- slf4j-api -->
  150. <dependency>
  151. <groupId>org.slf4j</groupId>
  152. <artifactId>slf4j-api</artifactId>
  153. <version>1.7.26</version>
  154. </dependency>
  155. <!-- standard -->
  156. <dependency>
  157. <groupId>taglibs</groupId>
  158. <artifactId>standard</artifactId>
  159. <version>1.1.2</version>
  160. </dependency>
  161. <!-- stax-api -->
  162. <dependency>
  163. <groupId>javax.xml.stream</groupId>
  164. <artifactId>stax-api</artifactId>
  165. <version>1.0</version>
  166. </dependency>
  167. <!-- xmlbeans -->
  168. <dependency>
  169. <groupId>org.apache.xmlbeans</groupId>
  170. <artifactId>xmlbeans</artifactId>
  171. <version>2.6.0</version>
  172. </dependency>
  173. <!--验证码的依赖-->
  174. <dependency>
  175. <groupId>com.github.penggle</groupId>
  176. <artifactId>kaptcha</artifactId>
  177. <version>2.3.2</version>
  178. </dependency>
  179. <!-- https://mvnrepository.com/artifact/com.jhlabs/filters -->
  180. <dependency>
  181. <groupId>com.jhlabs</groupId>
  182. <artifactId>filters</artifactId>
  183. <version>2.0.235-1</version>
  184. </dependency>
  185. </dependencies>
  186. <build>
  187. <finalName>gn_oa_vip27</finalName>
  188. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  189. <plugins>
  190. <plugin>
  191. <artifactId>maven-clean-plugin</artifactId>
  192. <version>3.1.0</version>
  193. </plugin>
  194. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  195. <plugin>
  196. <artifactId>maven-resources-plugin</artifactId>
  197. <version>3.0.2</version>
  198. </plugin>
  199. <plugin>
  200. <artifactId>maven-compiler-plugin</artifactId>
  201. <version>3.8.0</version>
  202. </plugin>
  203. <plugin>
  204. <artifactId>maven-surefire-plugin</artifactId>
  205. <version>2.22.1</version>
  206. </plugin>
  207. <plugin>
  208. <artifactId>maven-war-plugin</artifactId>
  209. <version>3.2.2</version>
  210. </plugin>
  211. <plugin>
  212. <artifactId>maven-install-plugin</artifactId>
  213. <version>2.5.2</version>
  214. </plugin>
  215. <plugin>
  216. <artifactId>maven-deploy-plugin</artifactId>
  217. <version>2.8.2</version>
  218. </plugin>
  219. </plugins>
  220. </pluginManagement>
  221. </build>
  222. </project>