pom.xml 4.5 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.2.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.launch.webflux</groupId>
  12. <artifactId>launch</artifactId>
  13. <version>1.0.0</version>
  14. <name>platform</name>
  15. <description>platform</description>
  16. <!-- 当前Maven工程的打包方式,可选值有下面三种: -->
  17. <!-- jar:表示这个工程是一个Java工程 -->
  18. <!-- war:表示这个工程是一个Web工程 -->
  19. <!-- pom:表示这个工程是“管理其他工程”的工程 -->
  20. <!-- <packaging>jar</packaging>-->
  21. <packaging>pom</packaging>
  22. <properties>
  23. <launch.version>1.0.0</launch.version>
  24. <!-- 工程构建过程中读取源码时使用的字符集 -->
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <java.version>21</java.version>
  27. <spring-cloud.version>2023.0.0-RC1</spring-cloud.version>
  28. <nacos.client.version>2.2.1</nacos.client.version>
  29. <r2dbc-mysql>1.0.5</r2dbc-mysql>
  30. <openapi.ui>2.2.0</openapi.ui>
  31. <validation>3.2.0</validation>
  32. <cola-component-dto>4.3.2</cola-component-dto>
  33. <revision>2022.0.0.0</revision>
  34. </properties>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-dependencies</artifactId>
  40. <version>${spring-cloud.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba.cloud</groupId>
  46. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  47. <version>${revision}</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.launch.webflux</groupId>
  53. <artifactId>launch-common</artifactId>
  54. <version>${launch.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.launch.webflux</groupId>
  58. <artifactId>launch-r2dbc</artifactId>
  59. <version>${launch.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.launch.webflux</groupId>
  63. <artifactId>launch-redis</artifactId>
  64. <version>${launch.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.launch.webflux</groupId>
  68. <artifactId>launch-elasticsearch</artifactId>
  69. <version>${launch.version}</version>
  70. </dependency>
  71. </dependencies>
  72. </dependencyManagement>
  73. <modules>
  74. <module>launch-admin</module>
  75. <module>launch-common</module>
  76. <module>launch-r2dbc</module>
  77. <module>launch-redis</module>
  78. <module>launch-elasticsearch</module>
  79. </modules>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. <version>3.2.0</version>
  86. <executions>
  87. <execution>
  88. <id>pre-integration-test</id>
  89. <goals>
  90. <goal>start</goal>
  91. </goals>
  92. </execution>
  93. <execution>
  94. <id>post-integration-test</id>
  95. <goals>
  96. <goal>stop</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. <repositories>
  104. <repository>
  105. <id>spring-milestones</id>
  106. <name>Spring Milestones</name>
  107. <url>https://repo.spring.io/milestone</url>
  108. <snapshots>
  109. <enabled>false</enabled>
  110. </snapshots>
  111. </repository>
  112. </repositories>
  113. </project>