pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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.${timestamp}</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. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-jpa</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-security</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.jsonwebtoken</groupId>
  32. <artifactId>jjwt-api</artifactId>
  33. <version>0.11.5</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.jsonwebtoken</groupId>
  37. <artifactId>jjwt-impl</artifactId>
  38. <version>0.11.5</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.jsonwebtoken</groupId>
  42. <artifactId>jjwt-jackson</artifactId>
  43. <version>0.11.5</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>jakarta.servlet</groupId>
  47. <artifactId>jakarta.servlet-api</artifactId>
  48. <version>6.1.0-M2</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba.fastjson2</groupId>
  53. <artifactId>fastjson2</artifactId>
  54. <version>2.0.49</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>net.jodah</groupId>
  58. <artifactId>expiringmap</artifactId>
  59. <version>0.5.8</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.flywaydb</groupId>
  63. <artifactId>flyway-core</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.security</groupId>
  72. <artifactId>spring-security-test</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. <optional>true</optional>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.bouncycastle</groupId>
  82. <artifactId>bcprov-jdk18on</artifactId>
  83. <version>1.78.1</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-lang3</artifactId>
  88. <version>3.14.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.squareup.okhttp3</groupId>
  92. <artifactId>okhttp</artifactId>
  93. <version>4.12.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>io.undertow</groupId>
  97. <artifactId>undertow-core</artifactId>
  98. <version>2.3.13.Final</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.undertow</groupId>
  102. <artifactId>undertow-servlet</artifactId>
  103. <version>2.3.13.Final</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.hibernate.orm</groupId>
  107. <artifactId>hibernate-spatial</artifactId>
  108. <version>6.5.0.Final</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.postgresql</groupId>
  112. <artifactId>postgresql</artifactId>
  113. <version>42.7.3</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springdoc</groupId>
  117. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  118. <version>2.5.0</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>io.hypersistence</groupId>
  122. <artifactId>hypersistence-utils-hibernate-63</artifactId>
  123. <version>3.7.5</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-compress</artifactId>
  128. <version>1.26.1</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>net.coobird</groupId>
  132. <artifactId>thumbnailator</artifactId>
  133. <version>0.4.20</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.calcite</groupId>
  137. <artifactId>calcite-core</artifactId>
  138. <version>1.37.0</version>
  139. </dependency>
  140. </dependencies>
  141. <build>
  142. <plugins>
  143. <plugin>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-maven-plugin</artifactId>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>