pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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.8</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.lqkj</groupId>
  12. <artifactId>CMLCP-SERVER</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>CMLCP-SERVER</name>
  15. <description>CMLCP-SERVER</description>
  16. <url/>
  17. <licenses>
  18. <license/>
  19. </licenses>
  20. <developers>
  21. <developer/>
  22. </developers>
  23. <scm>
  24. <connection/>
  25. <developerConnection/>
  26. <tag/>
  27. <url/>
  28. </scm>
  29. <properties>
  30. <java.version>17</java.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</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.postgresql</groupId>
  43. <artifactId>postgresql</artifactId>
  44. <scope>runtime</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. <optional>true</optional>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-test</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.commons</groupId>
  58. <artifactId>commons-lang3</artifactId>
  59. <version>3.14.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.flywaydb</groupId>
  63. <artifactId>flyway-core</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springdoc</groupId>
  67. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  68. <version>2.1.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springdoc</groupId>
  72. <artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
  73. <version>2.1.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>jakarta.servlet</groupId>
  77. <artifactId>jakarta.servlet-api</artifactId>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.squareup.okio</groupId>
  82. <artifactId>okio</artifactId>
  83. <version>3.6.0</version>
  84. </dependency>
  85. <!-- mybatis-flex -->
  86. <dependency>
  87. <groupId>com.mybatis-flex</groupId>
  88. <artifactId>mybatis-flex-spring-boot3-starter</artifactId>
  89. <version>1.9.5</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.zaxxer</groupId>
  93. <artifactId>HikariCP</artifactId>
  94. </dependency>
  95. <!-- redis-->
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-data-redis</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-io</groupId>
  102. <artifactId>commons-io</artifactId>
  103. <version>2.15.1</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-security</artifactId>
  108. </dependency>
  109. <!-- JWT 相关 -->
  110. <dependency>
  111. <groupId>io.jsonwebtoken</groupId>
  112. <artifactId>jjwt-api</artifactId>
  113. <version>0.11.5</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>io.jsonwebtoken</groupId>
  117. <artifactId>jjwt-impl</artifactId>
  118. <version>0.11.5</version>
  119. <scope>runtime</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>io.jsonwebtoken</groupId>
  123. <artifactId>jjwt-jackson</artifactId>
  124. <version>0.11.5</version>
  125. <scope>runtime</scope>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-maven-plugin</artifactId>
  133. <configuration>
  134. <excludes>
  135. <exclude>
  136. <groupId>org.projectlombok</groupId>
  137. <artifactId>lombok</artifactId>
  138. </exclude>
  139. </excludes>
  140. </configuration>
  141. </plugin>
  142. </plugins>
  143. </build>
  144. </project>