pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.fastfun</groupId>
  7. <artifactId>pdms-oss-api</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>pdms-oss-api</name>
  11. <description>pdms-oss-api for Spring Boot</description>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.1.4.RELEASE</version>
  16. <relativePath/> <!-- lookup parent from repository -->
  17. </parent>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <java.version>1.8</java.version>
  22. <spring-cloud.version>Greenwich.SR2</spring-cloud.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-validation</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-jpa</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-jdbc</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-redis</artifactId>
  44. </dependency>
  45. <!-- commons-pool2 -->
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-pool2</artifactId>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
  51. <dependency>
  52. <groupId>org.junit.jupiter</groupId>
  53. <artifactId>junit-jupiter-api</artifactId>
  54. <version>5.7.2</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-aop</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>druid-spring-boot-starter</artifactId>
  68. <version>1.1.10</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-lang3</artifactId>
  73. <version>3.9</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.auth0</groupId>
  77. <artifactId>java-jwt</artifactId>
  78. <version>3.8.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.gavaghan</groupId>
  82. <artifactId>geodesy</artifactId>
  83. <version>1.1.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.jsonwebtoken</groupId>
  87. <artifactId>jjwt</artifactId>
  88. <version>0.7.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.google.code.gson</groupId>
  92. <artifactId>gson</artifactId>
  93. <version>2.8.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>net.coobird</groupId>
  97. <artifactId>thumbnailator</artifactId>
  98. <version>0.4.8</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-codec</groupId>
  102. <artifactId>commons-codec</artifactId>
  103. <version>1.13</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.poi</groupId>
  107. <artifactId>poi</artifactId>
  108. <version>4.1.0</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-configuration-processor</artifactId>
  113. <optional>true</optional>
  114. </dependency>
  115. <dependency>
  116. <groupId>commons-io</groupId>
  117. <artifactId>commons-io</artifactId>
  118. <version>2.6</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.alibaba</groupId>
  122. <artifactId>fastjson</artifactId>
  123. <version>1.2.46</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.projectlombok</groupId>
  127. <artifactId>lombok</artifactId>
  128. <optional>true</optional>
  129. <scope>compile</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework.boot</groupId>
  133. <artifactId>spring-boot-starter-test</artifactId>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-starter-actuator</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.bridge</groupId>
  142. <artifactId>jpa-curd</artifactId>
  143. <version>2.3.1</version>
  144. </dependency>
  145. <!-- swagger -->
  146. <dependency>
  147. <groupId>io.springfox</groupId>
  148. <artifactId>springfox-swagger2</artifactId>
  149. <version>2.9.2</version>
  150. <scope>provided</scope>
  151. </dependency>
  152. <!-- swagger-ui -->
  153. <dependency>
  154. <groupId>io.springfox</groupId>
  155. <artifactId>springfox-swagger-ui</artifactId>
  156. <version>2.9.2</version>
  157. </dependency>
  158. </dependencies>
  159. <dependencyManagement>
  160. <dependencies>
  161. <dependency>
  162. <groupId>org.springframework.cloud</groupId>
  163. <artifactId>spring-cloud-dependencies</artifactId>
  164. <version>${spring-cloud.version}</version>
  165. <type>pom</type>
  166. <scope>import</scope>
  167. </dependency>
  168. </dependencies>
  169. </dependencyManagement>
  170. <build>
  171. <plugins>
  172. <plugin>
  173. <groupId>org.springframework.boot</groupId>
  174. <artifactId>spring-boot-maven-plugin</artifactId>
  175. </plugin>
  176. </plugins>
  177. <testResources>
  178. <testResource>
  179. <directory>${project.basedir}/src/test/java</directory>
  180. </testResource>
  181. <testResource>
  182. <directory>${project.basedir}/src/test/resources</directory>
  183. </testResource>
  184. </testResources>
  185. </build>
  186. <repositories>
  187. <repository>
  188. <id>nexus</id>
  189. <url>http://nexus.fast-fun.cn:92/repository/maven-public/</url>
  190. </repository>
  191. <repository>
  192. <id>nexus-snapshots</id>
  193. <url>http://nexus.fast-fun.cn:92/repository/maven-snapshots/</url>
  194. </repository>
  195. <repository>
  196. <id>nexus1</id>
  197. <name>Spring Milestones</name>
  198. <url>http://nexus.it5000.com:82/repository/maven-public/</url>
  199. </repository>
  200. </repositories>
  201. <pluginRepositories>
  202. <pluginRepository>
  203. <id>nexus</id>
  204. <url>http://nexus.fast-fun.cn:92/repository/maven-public/</url>
  205. </pluginRepository>
  206. </pluginRepositories>
  207. </project>