pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.8.RELEASE</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.sp</groupId>
  12. <artifactId>blind-date-parent</artifactId>
  13. <version>1.0.0</version>
  14. <packaging>pom</packaging>
  15. <name>blind-date-parent</name>
  16. <modules>
  17. <module>blind-date-core</module>
  18. <module>blind-date-logic</module>
  19. <module>blind-date-admin</module>
  20. </modules>
  21. <properties>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <java.version>1.8</java.version>
  25. <spring-cloud.version>Greenwich.SR3</spring-cloud.version>
  26. <spring-boot-admin.version>2.1.5</spring-boot-admin.version>
  27. <springbootversion>2.1.8.RELEASE</springbootversion>
  28. </properties>
  29. <distributionManagement>
  30. <repository>
  31. <id>nexus</id>
  32. <url>http://192.168.2.10:8081/repository/maven-public</url>
  33. </repository>
  34. </distributionManagement>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-dependencies</artifactId>
  40. <version>${spring-cloud.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>de.codecentric</groupId>
  46. <artifactId>spring-boot-admin-dependencies</artifactId>
  47. <version>${spring-boot-admin.version}</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. <version>${springbootversion}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-devtools</artifactId>
  59. <version>${springbootversion}</version>
  60. <scope>runtime</scope>
  61. <optional>true</optional>
  62. </dependency>
  63. <dependency>
  64. <groupId>mysql</groupId>
  65. <artifactId>mysql-connector-java</artifactId>
  66. <version>8.0.16</version>
  67. <scope>runtime</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. <version>1.18.2</version>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-test</artifactId>
  78. <version>${springbootversion}</version>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.sp.friendship</groupId>
  83. <artifactId>common</artifactId>
  84. <version>1.0.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.aliyun.oss</groupId>
  88. <artifactId>aliyun-sdk-oss</artifactId>
  89. <version>3.4.2</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-freemarker</artifactId>
  94. <version>${springbootversion}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger2</artifactId>
  99. <version>2.7.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.github.caspar-chen</groupId>
  103. <artifactId>swagger-ui-layer</artifactId>
  104. <version>1.1.3</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.github.pagehelper</groupId>
  108. <artifactId>pagehelper-spring-boot-starter</artifactId>
  109. <version>1.2.12</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.fasterxml.jackson.core</groupId>
  113. <artifactId>jackson-databind</artifactId>
  114. <version>2.9.9.3</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba</groupId>
  118. <artifactId>druid</artifactId>
  119. <version>1.1.17</version>
  120. </dependency>
  121. <!-- JWT 相关 -->
  122. <dependency>
  123. <groupId>io.jsonwebtoken</groupId>
  124. <artifactId>jjwt-api</artifactId>
  125. <version>0.10.5</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.alibaba</groupId>
  129. <artifactId>druid-spring-boot-starter</artifactId>
  130. <version>1.1.18</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>io.jsonwebtoken</groupId>
  134. <artifactId>jjwt-impl</artifactId>
  135. <version>0.10.5</version>
  136. <scope>runtime</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>io.jsonwebtoken</groupId>
  140. <artifactId>jjwt-jackson</artifactId>
  141. <version>0.10.5</version>
  142. <scope>runtime</scope>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.auth0</groupId>
  146. <artifactId>java-jwt</artifactId>
  147. <version>3.2.0</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.baomidou</groupId>
  151. <artifactId>mybatis-plus-boot-starter</artifactId>
  152. <version>3.2.0</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.baomidou</groupId>
  156. <artifactId>mybatis-plus-generator</artifactId>
  157. <version>3.2.0</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.commons</groupId>
  161. <artifactId>commons-lang3</artifactId>
  162. <version>3.5</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>commons-pool</groupId>
  166. <artifactId>commons-pool</artifactId>
  167. <version>1.6</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>commons-codec</groupId>
  171. <artifactId>commons-codec</artifactId>
  172. <version>1.13</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>commons-fileupload</groupId>
  176. <artifactId>commons-fileupload</artifactId>
  177. <version>1.3.3</version>
  178. </dependency>
  179. </dependencies>
  180. </dependencyManagement>
  181. </project>