pom.xml 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.1.8.RELEASE</version>
  8. <relativePath/>
  9. </parent>
  10. <groupId>com.sp.friendship</groupId>
  11. <artifactId>parent</artifactId>
  12. <version>5.1.0</version>
  13. <name>parent</name>
  14. <modelVersion>4.0.0</modelVersion>
  15. <packaging>pom</packaging>
  16. <modules>
  17. <module>core</module>
  18. <module>logic</module>
  19. <module>admin</module>
  20. <module>common</module>
  21. <module>push-starter</module>
  22. <module>shanpin-pay-starter</module>
  23. <module>rong-cloud-starter</module>
  24. <module>redis-starter</module>
  25. <module>task</module>
  26. </modules>
  27. <properties>
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  30. <java.version>1.8</java.version>
  31. <spring-cloud.version>Greenwich.SR3</spring-cloud.version>
  32. <spring-boot-admin.version>2.1.5</spring-boot-admin.version>
  33. <springbootversion>2.1.8.RELEASE</springbootversion>
  34. <friendship-version>5.1.0</friendship-version>
  35. </properties>
  36. <distributionManagement>
  37. <repository>
  38. <id>nexus</id>
  39. <url>http://192.168.2.10:8081/repository/maven-public</url>
  40. </repository>
  41. </distributionManagement>
  42. <dependencyManagement>
  43. <dependencies>
  44. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-aop</artifactId>
  48. <version>2.1.8.RELEASE</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.cloud</groupId>
  52. <artifactId>spring-cloud-dependencies</artifactId>
  53. <version>${spring-cloud.version}</version>
  54. <type>pom</type>
  55. <scope>import</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>de.codecentric</groupId>
  59. <artifactId>spring-boot-admin-dependencies</artifactId>
  60. <version>${spring-boot-admin.version}</version>
  61. <type>pom</type>
  62. <scope>import</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-web</artifactId>
  67. <version>${springbootversion}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-cache</artifactId>
  72. <version>${springbootversion}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-devtools</artifactId>
  77. <version>${springbootversion}</version>
  78. <scope>runtime</scope>
  79. <optional>true</optional>
  80. </dependency>
  81. <dependency>
  82. <groupId>mysql</groupId>
  83. <artifactId>mysql-connector-java</artifactId>
  84. <version>8.0.16</version>
  85. <scope>runtime</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.projectlombok</groupId>
  89. <artifactId>lombok</artifactId>
  90. <version>1.18.2</version>
  91. <optional>true</optional>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-test</artifactId>
  96. <version>${springbootversion}</version>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.aliyun.oss</groupId>
  101. <artifactId>aliyun-sdk-oss</artifactId>
  102. <version>3.4.2</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-freemarker</artifactId>
  107. <version>${springbootversion}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>io.springfox</groupId>
  111. <artifactId>springfox-swagger2</artifactId>
  112. <version>2.7.0</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.github.caspar-chen</groupId>
  116. <artifactId>swagger-ui-layer</artifactId>
  117. <version>1.1.3</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.pagehelper</groupId>
  121. <artifactId>pagehelper-spring-boot-starter</artifactId>
  122. <version>1.2.12</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.fasterxml.jackson.core</groupId>
  126. <artifactId>jackson-databind</artifactId>
  127. <version>2.9.9.3</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.alibaba</groupId>
  131. <artifactId>druid</artifactId>
  132. <version>1.1.17</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-starter-activemq</artifactId>
  137. <version>2.1.8.RELEASE</version>
  138. </dependency>
  139. <!-- JWT 相关 -->
  140. <dependency>
  141. <groupId>io.jsonwebtoken</groupId>
  142. <artifactId>jjwt-api</artifactId>
  143. <version>0.10.5</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>io.jsonwebtoken</groupId>
  147. <artifactId>jjwt-impl</artifactId>
  148. <version>0.10.5</version>
  149. <scope>runtime</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>io.jsonwebtoken</groupId>
  153. <artifactId>jjwt-jackson</artifactId>
  154. <version>0.10.5</version>
  155. <scope>runtime</scope>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.auth0</groupId>
  159. <artifactId>java-jwt</artifactId>
  160. <version>3.2.0</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.baomidou</groupId>
  164. <artifactId>mybatis-plus-boot-starter</artifactId>
  165. <version>3.2.0</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.baomidou</groupId>
  169. <artifactId>mybatis-plus-generator</artifactId>
  170. <version>3.2.0</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.commons</groupId>
  174. <artifactId>commons-lang3</artifactId>
  175. <version>3.5</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>commons-pool</groupId>
  179. <artifactId>commons-pool</artifactId>
  180. <version>1.6</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>commons-codec</groupId>
  184. <artifactId>commons-codec</artifactId>
  185. <version>1.13</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>commons-fileupload</groupId>
  189. <artifactId>commons-fileupload</artifactId>
  190. <version>1.3.3</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.alibaba</groupId>
  194. <artifactId>druid-spring-boot-starter</artifactId>
  195. <version>1.1.18</version>
  196. </dependency>
  197. </dependencies>
  198. </dependencyManagement>
  199. <profiles>
  200. <profile>
  201. <id>dev</id>
  202. <properties>
  203. <spring.active.profile>dev</spring.active.profile>
  204. <alipay-cert-path>/Users/shiyi/IdeaWorkSpace/friendship-parent/admin/src/main/resources/appCertPublicKey_2021002111654462.crt</alipay-cert-path>
  205. <alipay-public-key-cert-path>/Users/shiyi/IdeaWorkSpace/friendship-parent/admin/src/main/resources/alipayCertPublicKey_RSA2.crt</alipay-public-key-cert-path>
  206. <alipay-root-cert-path>/Users/shiyi/IdeaWorkSpace/friendship-parent/admin/src/main/resources/alipayRootCert.crt</alipay-root-cert-path>
  207. </properties>
  208. </profile>
  209. <profile>
  210. <id>test</id>
  211. <properties>
  212. <spring.active.profile>test</spring.active.profile>
  213. <alipay-cert-path>/srv/server/friendship-server/friendship-admin/cert/appCertPublicKey_2021002111654462.crt</alipay-cert-path>
  214. <alipay-public-key-cert-path>/srv/server/friendship-server/friendship-admin/cert/alipayCertPublicKey_RSA2.crt</alipay-public-key-cert-path>
  215. <alipay-root-cert-path>/srv/server/friendship-server/friendship-admin/cert/alipayRootCert.crt</alipay-root-cert-path>
  216. </properties>
  217. </profile>
  218. <profile>
  219. <id>pro</id>
  220. <properties>
  221. <spring.active.profile>pro</spring.active.profile>
  222. <alipay-cert-path>/srv/server/friendship-server/friendship-logic/cert/appCertPublicKey_2021002111654462.crt</alipay-cert-path>
  223. <alipay-public-key-cert-path>/srv/server/friendship-server/friendship-logic/cert/alipayCertPublicKey_RSA2.crt</alipay-public-key-cert-path>
  224. <alipay-root-cert-path>/srv/server/friendship-server/friendship-logic/cert/alipayRootCert.crt</alipay-root-cert-path>
  225. </properties>
  226. </profile>
  227. </profiles>
  228. </project>