pom.xml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.up.zpb</groupId>
  5. <artifactId>up-mls-api</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <!-- test <packaging>war</packaging> -->
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.0.4.RELEASE</version>
  12. <relativePath />
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter</artifactId>
  23. <exclusions>
  24. <exclusion>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-logging</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-tomcat</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-undertow</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-log4j2</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.mybatis.spring.boot</groupId>
  55. <artifactId>mybatis-spring-boot-starter</artifactId>
  56. <version>1.3.2</version>
  57. </dependency>
  58. <!-- cache -->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-cache</artifactId>
  62. </dependency>
  63. <!-- redis -->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-data-redis</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-aop</artifactId>
  71. </dependency>
  72. <!-- spring session的依赖 -->
  73. <dependency>
  74. <groupId>org.springframework.session</groupId>
  75. <artifactId>spring-session-data-redis</artifactId>
  76. </dependency>
  77. <!-- 热部署配置. -->
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-devtools</artifactId>
  81. <optional>true</optional>
  82. </dependency>
  83. <dependency>
  84. <groupId>mysql</groupId>
  85. <artifactId>mysql-connector-java</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>druid</artifactId>
  90. <version>1.1.10</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.mybatis.generator</groupId>
  94. <artifactId>mybatis-generator-core</artifactId>
  95. <version>1.3.6</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.googlecode.rapid-framework</groupId>
  99. <artifactId>rapid-core</artifactId>
  100. <version>4.0.5</version>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  103. <dependency>
  104. <groupId>commons-lang</groupId>
  105. <artifactId>commons-lang</artifactId>
  106. <version>2.6</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.commons</groupId>
  110. <artifactId>commons-lang3</artifactId>
  111. <version>3.7</version>
  112. </dependency>
  113. <!-- https://mvnrepository.com/artifact/commons-configuration/commons-configuration -->
  114. <dependency>
  115. <groupId>commons-configuration</groupId>
  116. <artifactId>commons-configuration</artifactId>
  117. <version>1.10</version>
  118. </dependency>
  119. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  120. <dependency>
  121. <groupId>commons-codec</groupId>
  122. <artifactId>commons-codec</artifactId>
  123. </dependency>
  124. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  125. <dependency>
  126. <groupId>commons-io</groupId>
  127. <artifactId>commons-io</artifactId>
  128. <version>2.6</version>
  129. </dependency>
  130. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
  131. <dependency>
  132. <groupId>org.apache.commons</groupId>
  133. <artifactId>commons-pool2</artifactId>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
  136. <dependency>
  137. <groupId>com.auth0</groupId>
  138. <artifactId>java-jwt</artifactId>
  139. <version>3.3.0</version>
  140. </dependency>
  141. <!-- pagehelper 分页插件 -->
  142. <dependency>
  143. <groupId>com.github.pagehelper</groupId>
  144. <artifactId>pagehelper-spring-boot-starter</artifactId>
  145. <version>1.2.5</version>
  146. </dependency>
  147. <!-- https://mvnrepository.com/artifact/com.alipay.sdk/alipay-sdk-java -->
  148. <dependency>
  149. <groupId>com.alipay.sdk</groupId>
  150. <artifactId>alipay-sdk-java</artifactId>
  151. <version>3.3.49.ALL</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.dom4j</groupId>
  155. <artifactId>dom4j</artifactId>
  156. <version>2.0.0</version>
  157. </dependency>
  158. <!-- https://mvnrepository.com/artifact/org.jdom/jdom -->
  159. <dependency>
  160. <groupId>org.jdom</groupId>
  161. <artifactId>jdom</artifactId>
  162. <version>1.1.3</version>
  163. </dependency>
  164. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  165. <dependency>
  166. <groupId>com.alibaba</groupId>
  167. <artifactId>fastjson</artifactId>
  168. <version>1.2.28</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.httpcomponents</groupId>
  172. <artifactId>httpclient</artifactId>
  173. <exclusions>
  174. <exclusion>
  175. <artifactId>commons-codec</artifactId>
  176. <groupId>commons-codec</groupId>
  177. </exclusion>
  178. </exclusions>
  179. </dependency>
  180. <!-- https://mvnrepository.com/artifact/ant/ant -->
  181. <dependency>
  182. <groupId>ant</groupId>
  183. <artifactId>ant</artifactId>
  184. <version>1.7.0</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.aliyun</groupId>
  188. <artifactId>aliyun-java-sdk-core</artifactId>
  189. <version>3.5.1</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.aliyun</groupId>
  193. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  194. <version>1.0.0</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>com.google.zxing</groupId>
  198. <artifactId>core</artifactId>
  199. <version>3.3.3</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.google.guava</groupId>
  203. <artifactId>guava</artifactId>
  204. <version>22.0</version>
  205. </dependency>
  206. <!-- aliyun-sdk-oss -->
  207. <dependency>
  208. <groupId>com.aliyun.oss</groupId>
  209. <artifactId>aliyun-sdk-oss</artifactId>
  210. <version>3.1.0</version>
  211. </dependency>
  212. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  213. <dependency>
  214. <groupId>org.bouncycastle</groupId>
  215. <artifactId>bcprov-jdk15on</artifactId>
  216. <version>1.60</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.projectlombok</groupId>
  220. <artifactId>lombok</artifactId>
  221. <version>1.18.8</version>
  222. </dependency>
  223. <!--e签宝 start-->
  224. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  225. <dependency>
  226. <groupId>org.apache.commons</groupId>
  227. <artifactId>commons-collections4</artifactId>
  228. <version>4.4</version>
  229. </dependency>
  230. <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
  231. <dependency>
  232. <groupId>commons-logging</groupId>
  233. <artifactId>commons-logging</artifactId>
  234. <version>1.2</version>
  235. </dependency>
  236. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  237. <dependency>
  238. <groupId>org.apache.httpcomponents</groupId>
  239. <artifactId>httpcore</artifactId>
  240. <version>4.4.3</version>
  241. </dependency>
  242. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
  243. <dependency>
  244. <groupId>org.slf4j</groupId>
  245. <artifactId>slf4j-api</artifactId>
  246. <version>1.7.26</version>
  247. </dependency>
  248. <!--e签宝 end-->
  249. <!--400对接 start-->
  250. <dependency>
  251. <groupId>org.codehaus.xfire</groupId>
  252. <artifactId>xfire-core</artifactId>
  253. <version>1.2.6</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.codehaus.xfire</groupId>
  257. <artifactId>xfire-aegis</artifactId>
  258. <version>1.2.6</version>
  259. </dependency>
  260. <!--400对接 end-->
  261. <!-- jsoup HTML parser library @ https://jsoup.org/ -->
  262. <dependency>
  263. <groupId>org.jsoup</groupId>
  264. <artifactId>jsoup</artifactId>
  265. <version>1.11.2</version>
  266. </dependency>
  267. </dependencies>
  268. <build>
  269. <finalName>up-mls-api</finalName>
  270. <plugins>
  271. <plugin>
  272. <groupId>org.springframework.boot</groupId>
  273. <artifactId>spring-boot-maven-plugin</artifactId>
  274. <configuration>
  275. <mainClass>com.up.zpb.run.UpSpringApplication</mainClass>
  276. </configuration>
  277. </plugin>
  278. </plugins>
  279. </build>
  280. </project>