pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>parent</artifactId>
  7. <groupId>com.jpsoft.bus</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.jpsoft.bus</groupId>
  12. <artifactId>web</artifactId>
  13. <version>1.0.0</version>
  14. <name>web</name>
  15. <packaging>war</packaging>
  16. <description>车信达</description>
  17. <properties>
  18. <swagger2.version>2.7.0</swagger2.version>
  19. <jwts.version>0.10.5</jwts.version>
  20. <netty-all.version>4.1.6.Final</netty-all.version>
  21. <fastjson.version>1.2.29</fastjson.version>
  22. <alipay.version>4.8.10.ALL</alipay.version>
  23. <ijpay.version>2.3.2</ijpay.version>
  24. <poi.version>4.1.0</poi.version>
  25. <lombok.version>1.18.12</lombok.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-tomcat</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>net.sourceforge.nekohtml</groupId>
  44. <artifactId>nekohtml</artifactId>
  45. <version>1.9.22</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.jpsoft.bus</groupId>
  49. <artifactId>common</artifactId>
  50. <version>1.0.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-aop</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.springfox</groupId>
  58. <artifactId>springfox-swagger2</artifactId>
  59. <version>${swagger2.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.springfox</groupId>
  63. <artifactId>springfox-swagger-ui</artifactId>
  64. <version>${swagger2.version}</version>
  65. </dependency>
  66. <!--整合Knife4j-->
  67. <dependency>
  68. <groupId>com.github.xiaoymin</groupId>
  69. <artifactId>knife4j-spring-boot-starter</artifactId>
  70. <version>2.0.4</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.httpcomponents</groupId>
  74. <artifactId>httpclient</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpclient</artifactId>
  79. </dependency>
  80. <!--jwt start-->
  81. <dependency>
  82. <groupId>io.jsonwebtoken</groupId>
  83. <artifactId>jjwt-api</artifactId>
  84. <version>0.10.5</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>io.jsonwebtoken</groupId>
  88. <artifactId>jjwt-impl</artifactId>
  89. <version>${jwts.version}</version>
  90. <scope>runtime</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.jsonwebtoken</groupId>
  94. <artifactId>jjwt-jackson</artifactId>
  95. <version>${jwts.version}</version>
  96. <scope>runtime</scope>
  97. </dependency>
  98. <!--jwt end-->
  99. <!--支付相关 start-->
  100. <dependency>
  101. <groupId>com.github.javen205</groupId>
  102. <artifactId>IJPay-All</artifactId>
  103. <version>${ijpay.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.jfinal</groupId>
  107. <artifactId>jfinal</artifactId>
  108. <version>3.5</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alipay.sdk</groupId>
  112. <artifactId>alipay-sdk-java</artifactId>
  113. <version>${alipay.version}</version>
  114. <exclusions>
  115. <exclusion>
  116. <artifactId>bcprov-jdk15on</artifactId>
  117. <groupId>org.bouncycastle</groupId>
  118. </exclusion>
  119. </exclusions>
  120. </dependency>
  121. <!--支付相关 end-->
  122. <dependency>
  123. <groupId>joda-time</groupId>
  124. <artifactId>joda-time</artifactId>
  125. <version>2.6</version>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-maven-plugin</artifactId>
  133. <configuration>
  134. <fork>true</fork>
  135. <addResources>true</addResources>
  136. </configuration>
  137. </plugin>
  138. </plugins>
  139. </build>
  140. <profiles>
  141. <profile>
  142. <id>dev</id>
  143. <dependencies>
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-tomcat</artifactId>
  147. </dependency>
  148. </dependencies>
  149. <properties>
  150. <active.profile>dev</active.profile>
  151. </properties>
  152. <activation>
  153. <activeByDefault>true</activeByDefault>
  154. </activation>
  155. </profile>
  156. <profile>
  157. <id>test</id>
  158. <dependencies>
  159. <dependency>
  160. <groupId>javax.servlet</groupId>
  161. <artifactId>javax.servlet-api</artifactId>
  162. <version>3.1.0</version>
  163. <scope>provided</scope>
  164. </dependency>
  165. </dependencies>
  166. <properties>
  167. <active.profile>test</active.profile>
  168. </properties>
  169. </profile>
  170. <profile>
  171. <id>production</id>
  172. <properties>
  173. <active.profile>production</active.profile>
  174. </properties>
  175. <dependencies>
  176. <dependency>
  177. <groupId>javax.servlet</groupId>
  178. <artifactId>javax.servlet-api</artifactId>
  179. <version>3.1.0</version>
  180. <scope>provided</scope>
  181. </dependency>
  182. </dependencies>
  183. </profile>
  184. </profiles>
  185. </project>