pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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>3.2.5</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.lqkj</groupId>
  12. <artifactId>link</artifactId>
  13. <version>1.0.0</version>
  14. <name>LINK-SERVER</name>
  15. <description>LINK-SERVER</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <timestamp>${maven.build.timestamp}</timestamp>
  19. <maven.build.timestamp.format>yyMMdd</maven.build.timestamp.format>
  20. </properties>
  21. <repositories>
  22. <repository>
  23. <id>aliyun</id>
  24. <url>http://192.168.4.211:8082/repository/aliyun-repository/</url>
  25. </repository>
  26. <repository>
  27. <id>spring-milestones</id>
  28. <name>Spring Milestones</name>
  29. <url>http://192.168.4.211:8082/repository/spring-milestones/</url>
  30. <snapshots>
  31. <enabled>false</enabled>
  32. </snapshots>
  33. </repository>
  34. </repositories>
  35. <dependencies>
  36. <dependency>
  37. <groupId>com.aliyun</groupId>
  38. <artifactId>dysmsapi20170525</artifactId>
  39. <version>3.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-data-jpa</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-security</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.jsonwebtoken</groupId>
  51. <artifactId>jjwt-api</artifactId>
  52. <version>0.11.5</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.jsonwebtoken</groupId>
  56. <artifactId>jjwt-impl</artifactId>
  57. <version>0.11.5</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.jsonwebtoken</groupId>
  61. <artifactId>jjwt-jackson</artifactId>
  62. <version>0.11.5</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>jakarta.servlet</groupId>
  66. <artifactId>jakarta.servlet-api</artifactId>
  67. <version>6.1.0-M2</version>
  68. <scope>provided</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba.fastjson2</groupId>
  72. <artifactId>fastjson2</artifactId>
  73. <version>2.0.49</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>net.jodah</groupId>
  77. <artifactId>expiringmap</artifactId>
  78. <version>0.5.8</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.flywaydb</groupId>
  82. <artifactId>flyway-core</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.security</groupId>
  91. <artifactId>spring-security-test</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.projectlombok</groupId>
  96. <artifactId>lombok</artifactId>
  97. <optional>true</optional>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.bouncycastle</groupId>
  101. <artifactId>bcprov-jdk18on</artifactId>
  102. <version>1.78.1</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.commons</groupId>
  106. <artifactId>commons-lang3</artifactId>
  107. <version>3.14.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.squareup.okhttp3</groupId>
  111. <artifactId>okhttp</artifactId>
  112. <version>4.12.0</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>io.undertow</groupId>
  116. <artifactId>undertow-core</artifactId>
  117. <version>2.3.13.Final</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>io.undertow</groupId>
  121. <artifactId>undertow-servlet</artifactId>
  122. <version>2.3.13.Final</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.hibernate.orm</groupId>
  126. <artifactId>hibernate-spatial</artifactId>
  127. <version>6.5.0.Final</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.postgresql</groupId>
  131. <artifactId>postgresql</artifactId>
  132. <version>42.7.3</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springdoc</groupId>
  136. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  137. <version>2.5.0</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>io.hypersistence</groupId>
  141. <artifactId>hypersistence-utils-hibernate-63</artifactId>
  142. <version>3.7.5</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.commons</groupId>
  146. <artifactId>commons-compress</artifactId>
  147. <version>1.26.1</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>net.coobird</groupId>
  151. <artifactId>thumbnailator</artifactId>
  152. <version>0.4.20</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.calcite</groupId>
  156. <artifactId>calcite-core</artifactId>
  157. <version>1.37.0</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>cn.hutool</groupId>
  161. <artifactId>hutool-all</artifactId>
  162. <version>5.8.25</version>
  163. </dependency>
  164. <!-- 阿里云oss依赖-->
  165. <dependency>
  166. <groupId>com.aliyun.oss</groupId>
  167. <artifactId>aliyun-sdk-oss</artifactId>
  168. <version>3.17.4</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>javax.xml.bind</groupId>
  172. <artifactId>jaxb-api</artifactId>
  173. <version>2.3.1</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>javax.activation</groupId>
  177. <artifactId>activation</artifactId>
  178. <version>1.1.1</version>
  179. </dependency>
  180. <!-- no more than 2.3.3-->
  181. <dependency>
  182. <groupId>org.glassfish.jaxb</groupId>
  183. <artifactId>jaxb-runtime</artifactId>
  184. <version>2.3.3</version>
  185. </dependency>
  186. </dependencies>
  187. <build>
  188. <plugins>
  189. <plugin>
  190. <groupId>org.springframework.boot</groupId>
  191. <artifactId>spring-boot-maven-plugin</artifactId>
  192. </plugin>
  193. </plugins>
  194. </build>
  195. </project>