pom.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>lingtao.net</groupId>
  6. <artifactId>quote_price</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <build>
  10. <finalName>quote_price</finalName>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <version>3.6.1</version>
  16. <configuration>
  17. <source>1.8</source>
  18. <target>1.8</target>
  19. </configuration>
  20. </plugin>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-war-plugin</artifactId>
  24. <configuration>
  25. <webResources>
  26. <resource>
  27. <directory>src/main/resources/lib</directory>
  28. <targetPath>WEB-INF/lib/</targetPath>
  29. <includes>
  30. <include>**/*.jar</include>
  31. </includes>
  32. </resource>
  33. </webResources>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <dependencies>
  39. <!-- 引入pageHelper分页插件 -->
  40. <dependency>
  41. <groupId>com.github.pagehelper</groupId>
  42. <artifactId>pagehelper</artifactId>
  43. <version>5.0.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-webmvc</artifactId>
  48. <version>4.2.4.RELEASE</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-jdbc</artifactId>
  53. <version>4.2.4.RELEASE</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework</groupId>
  57. <artifactId>spring-aspects</artifactId>
  58. <version>4.2.4.RELEASE</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.mybatis</groupId>
  62. <artifactId>mybatis</artifactId>
  63. <version>3.4.6</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis</groupId>
  67. <artifactId>mybatis-spring</artifactId>
  68. <version>1.3.2</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.mchange</groupId>
  72. <artifactId>c3p0</artifactId>
  73. <version>0.9.5.2</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>mysql</groupId>
  77. <artifactId>mysql-connector-java</artifactId>
  78. <version>5.1.32</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>jstl</groupId>
  82. <artifactId>jstl</artifactId>
  83. <version>1.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>taglibs</groupId>
  87. <artifactId>standard</artifactId>
  88. <version>1.1.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>javax.servlet</groupId>
  92. <artifactId>javax.servlet-api</artifactId>
  93. <version>3.0.1</version>
  94. <scope>provided</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>junit</groupId>
  98. <artifactId>junit</artifactId>
  99. <version>4.12</version>
  100. </dependency>
  101. <!-- spring单元测试 -->
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring-test</artifactId>
  105. <version>4.2.4.RELEASE</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>javax.servlet</groupId>
  109. <artifactId>jsp-api</artifactId>
  110. <version>2.0</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.fasterxml.jackson.core</groupId>
  114. <artifactId>jackson-databind</artifactId>
  115. <version>2.8.8</version>
  116. </dependency>
  117. <!-- JSR303数据校验 -->
  118. <dependency>
  119. <groupId>org.hibernate</groupId>
  120. <artifactId>hibernate-validator</artifactId>
  121. <version>5.3.6.Final</version>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  124. <dependency>
  125. <groupId>org.projectlombok</groupId>
  126. <artifactId>lombok</artifactId>
  127. <version>1.18.12</version>
  128. <scope>provided</scope>
  129. </dependency>
  130. <!-- 文件上传 -->
  131. <dependency>
  132. <groupId>commons-fileupload</groupId>
  133. <artifactId>commons-fileupload</artifactId>
  134. <version>1.3.3</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.poi</groupId>
  138. <artifactId>poi-ooxml</artifactId>
  139. <version>3.14-beta1</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.poi</groupId>
  143. <artifactId>poi-ooxml-schemas</artifactId>
  144. <version>3.14-beta1</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.poi</groupId>
  148. <artifactId>poi</artifactId>
  149. <version>3.14-beta1</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.httpcomponents</groupId>
  153. <artifactId>httpclient</artifactId>
  154. <version>4.5.2</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>net.sf.json-lib</groupId>
  158. <artifactId>json-lib</artifactId>
  159. <version>2.4</version>
  160. <classifier>jdk15</classifier>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.slf4j</groupId>
  164. <artifactId>slf4j-log4j12</artifactId>
  165. <version>1.7.14</version>
  166. </dependency>
  167. <!-- shiro -->
  168. <dependency>
  169. <groupId>org.apache.shiro</groupId>
  170. <artifactId>shiro-all</artifactId>
  171. <version>1.3.2</version>
  172. </dependency>
  173. <!-- 登陆用户的信息IP/浏览器/等 -->
  174. <dependency>
  175. <groupId>eu.bitwalker</groupId>
  176. <artifactId>UserAgentUtils</artifactId>
  177. <version>1.20</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.alibaba</groupId>
  181. <artifactId>fastjson</artifactId>
  182. <version>1.2.24</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.luhuiguo</groupId>
  186. <artifactId>aspose-pdf</artifactId>
  187. <version>23.1</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>com.singularsys</groupId>
  191. <artifactId>jep</artifactId>
  192. <version>3.5</version>
  193. <scope>system</scope>
  194. <systemPath>${project.basedir}/src/main/resources/lib/jep-java-3.5-trial.jar</systemPath>
  195. </dependency>
  196. </dependencies>
  197. <properties>
  198. <project.build.sourceEncoding>
  199. UTF-8
  200. </project.build.sourceEncoding>
  201. </properties>
  202. </project>