已有开发项目的熟悉过程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.2020test</groupId>
  6. <artifactId>2020test</artifactId>
  7. <version>1.0.59</version>
  8. <packaging>jar</packaging>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>1.5.8.RELEASE</version>
  13. </parent>
  14. <name>2020test</name>
  15. <url>http://maven.apache.org</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <weixin-java-mp.version>3.4.0</weixin-java-mp.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.google.code.gson</groupId>
  23. <artifactId>gson</artifactId>
  24. <version>2.6.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. <version>1.3.1</version>
  38. </dependency>
  39. <!--postgresql -->
  40. <!-- <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId>
  41. </dependency> -->
  42. <dependency>
  43. <groupId>org.postgresql</groupId>
  44. <artifactId>postgresql</artifactId>
  45. <scope>runtime</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>druid</artifactId>
  50. <version>1.0.5</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>redis.clients</groupId>
  54. <artifactId>jedis</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>fastjson</artifactId>
  59. <version>1.2.38</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-codec</groupId>
  63. <artifactId>commons-codec</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.commons</groupId>
  67. <artifactId>commons-lang3</artifactId>
  68. <version>3.6</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-codec</groupId>
  72. <artifactId>commons-codec</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. <version>3.6</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-data-jpa</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-validation</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>net.sf.json-lib</groupId>
  89. <artifactId>json-lib</artifactId>
  90. <version>2.4</version>
  91. <classifier>jdk15</classifier>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.qiniu</groupId>
  95. <artifactId>qiniu-java-sdk</artifactId>
  96. <version>[7.2.0, 7.2.99]</version>
  97. </dependency>
  98. <!-- 处理Excel2003 -->
  99. <!--<dependency> -->
  100. <!--<groupId>org.apache.poi</groupId> -->
  101. <!--<artifactId>poi</artifactId> -->
  102. <!--<version>3.17</version> -->
  103. <!--</dependency> -->
  104. <!--&lt;!&ndash; 处理Excel2007&ndash;&gt; -->
  105. <!--<dependency> -->
  106. <!--<groupId>org.apache.poi</groupId> -->
  107. <!--<artifactId>poi-ooxml</artifactId> -->
  108. <!--<version>3.17</version> -->
  109. <!--</dependency> -->
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi</artifactId>
  113. <version>3.9</version>
  114. </dependency>
  115. <!-- 处理Excel2007 -->
  116. <dependency>
  117. <groupId>org.apache.poi</groupId>
  118. <artifactId>poi-ooxml</artifactId>
  119. <version>3.9</version>
  120. </dependency>
  121. <!-- shiro -->
  122. <dependency>
  123. <groupId>org.apache.shiro</groupId>
  124. <artifactId>shiro-spring</artifactId>
  125. <version>1.4.0</version>
  126. </dependency>
  127. <!-- http -->
  128. <dependency>
  129. <groupId>org.apache.httpcomponents</groupId>
  130. <artifactId>httpclient</artifactId>
  131. <version>4.5.3</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>net.sourceforge.nekohtml</groupId>
  135. <artifactId>nekohtml</artifactId>
  136. <version>1.9.22</version>
  137. </dependency>
  138. <!-- itext方式导出pdf -->
  139. <dependency>
  140. <groupId>com.lowagie</groupId>
  141. <artifactId>itext</artifactId>
  142. <version>4.2.2</version>
  143. </dependency>
  144. <!-- 发送短信 -->
  145. <dependency>
  146. <groupId>com.github.qcloudsms</groupId>
  147. <artifactId>qcloudsms</artifactId>
  148. <version>1.0.5</version>
  149. </dependency>
  150. <!--阿里云推送 -->
  151. <dependency>
  152. <groupId>com.aliyun.openservices</groupId>
  153. <artifactId>ons-client</artifactId>
  154. <version>1.8.0.Final</version>
  155. </dependency>
  156. <!-- https://mvnrepository.com/artifact/javax.mail/mail -->
  157. <dependency>
  158. <groupId>javax.mail</groupId>
  159. <artifactId>mail</artifactId>
  160. <version>1.4</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.googlecode.juniversalchardet</groupId>
  164. <artifactId>juniversalchardet</artifactId>
  165. <version>1.0.3</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.github.binarywang</groupId>
  169. <artifactId>weixin-java-mp</artifactId>
  170. <version>${weixin-java-mp.version}</version>
  171. </dependency>
  172. <!-- quartz 使用了该jar包PlatformTransactionManager类 -->
  173. <dependency>
  174. <groupId>org.springframework</groupId>
  175. <artifactId>spring-tx</artifactId>
  176. </dependency>
  177. <!-- 该依赖里面有spring对schedule的支持 -->
  178. <dependency>
  179. <groupId>org.springframework</groupId>
  180. <artifactId>spring-context-support</artifactId>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.quartz-scheduler</groupId>
  184. <artifactId>quartz</artifactId>
  185. <version>2.2.1</version>
  186. </dependency>
  187. <!--wy 读取以.xls结尾的excel -->
  188. <dependency>
  189. <groupId>org.apache.poi</groupId>
  190. <artifactId>poi</artifactId>
  191. <version>3.11</version>
  192. </dependency>
  193. <!--wy h2 -->
  194. <!-- <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId>
  195. <version>1.4.197</version> <scope>test</scope> </dependency> -->
  196. </dependencies>
  197. <build>
  198. <plugins>
  199. <plugin>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-maven-plugin</artifactId>
  202. </plugin>
  203. </plugins>
  204. </build>
  205. </project>