pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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.1.5</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.launch</groupId>
  12. <artifactId>app</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>platform</name>
  15. <description>platform</description>
  16. <properties>
  17. <java.version>21</java.version>
  18. </properties>
  19. <dependencies>
  20. <!-- db -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-r2dbc</artifactId>
  24. </dependency>
  25. <!-- https://mvnrepository.com/artifact/io.asyncer/r2dbc-mysql -->
  26. <dependency>
  27. <groupId>io.asyncer</groupId>
  28. <artifactId>r2dbc-mysql</artifactId>
  29. <version>1.0.5</version>
  30. </dependency>
  31. <!-- r2dbc 连接池 -->
  32. <dependency>
  33. <groupId>io.r2dbc</groupId>
  34. <artifactId>r2dbc-pool</artifactId>
  35. </dependency>
  36. <!--r2dbc mysql 库-->
  37. <!-- <dependency>-->
  38. <!-- <groupId>dev.miku</groupId>-->
  39. <!-- <artifactId>r2dbc-mysql</artifactId>-->
  40. <!-- <version>0.8.2.RELEASE</version>-->
  41. <!-- </dependency>-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  45. </dependency>
  46. <!-- web -->
  47. <dependency>
  48. <groupId>jakarta.validation</groupId>
  49. <artifactId>jakarta.validation-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.google.code.findbugs</groupId>
  53. <artifactId>jsr305</artifactId>
  54. <version>3.0.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-webflux</artifactId>
  59. </dependency>
  60. <!-- dev -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-actuator</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springdoc</groupId>
  67. <artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
  68. <version>2.0.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-devtools</artifactId>
  73. <scope>runtime</scope>
  74. <optional>true</optional>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-configuration-processor</artifactId>
  79. <optional>true</optional>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. <optional>true</optional>
  85. </dependency>
  86. <!-- test -->
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-test</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.projectreactor</groupId>
  94. <artifactId>reactor-test</artifactId>
  95. <scope>test</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <configuration>
  108. <excludes>
  109. <exclude>
  110. <groupId>org.projectlombok</groupId>
  111. <artifactId>lombok</artifactId>
  112. </exclude>
  113. </excludes>
  114. </configuration>
  115. </plugin>
  116. </plugins>
  117. </build>
  118. </project>