pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.iocoder.boot</groupId>
  7. <artifactId>yudao</artifactId>
  8. <version>${revision}</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>yudao-dependencies</module>
  12. <module>yudao-framework</module>
  13. <!-- Server 主项目 -->
  14. <module>yudao-server</module>
  15. <!-- 各种 module 拓展 -->
  16. <module>yudao-module-system</module>
  17. <module>yudao-module-infra</module>
  18. <module>yudao-module-contract</module>
  19. <!-- <module>yudao-module-member</module>-->
  20. <!-- <module>yudao-module-bpm</module>-->
  21. <!-- <module>yudao-module-report</module>-->
  22. <!-- <module>yudao-module-mp</module>-->
  23. <!-- <module>yudao-module-pay</module>-->
  24. <!-- <module>yudao-module-mall</module>-->
  25. <!-- <module>yudao-module-crm</module>-->
  26. <!-- <module>yudao-module-erp</module>-->
  27. </modules>
  28. <name>${project.artifactId}</name>
  29. <description>芋道项目基础脚手架</description>
  30. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  31. <properties>
  32. <revision>2.1.0-jdk8-snapshot</revision>
  33. <!-- Maven 相关 -->
  34. <java.version>1.8</java.version>
  35. <maven.compiler.source>${java.version}</maven.compiler.source>
  36. <maven.compiler.target>${java.version}</maven.compiler.target>
  37. <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
  38. <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
  39. <flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
  40. <!-- 看看咋放到 bom 里 -->
  41. <lombok.version>1.18.30</lombok.version>
  42. <spring.boot.version>2.7.18</spring.boot.version>
  43. <mapstruct.version>1.5.5.Final</mapstruct.version>
  44. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  45. </properties>
  46. <dependencyManagement>
  47. <dependencies>
  48. <dependency>
  49. <groupId>cn.iocoder.boot</groupId>
  50. <artifactId>yudao-dependencies</artifactId>
  51. <version>${revision}</version>
  52. <type>pom</type>
  53. <scope>import</scope>
  54. </dependency>
  55. </dependencies>
  56. </dependencyManagement>
  57. <build>
  58. <pluginManagement>
  59. <plugins>
  60. <!-- maven-surefire-plugin 插件,用于运行单元测试。 -->
  61. <!-- 注意,需要使用 3.0.X+,因为要支持 Junit 5 版本 -->
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-surefire-plugin</artifactId>
  65. <version>${maven-surefire-plugin.version}</version>
  66. </plugin>
  67. <!-- maven-compiler-plugin 插件,解决 spring-boot-configuration-processor + Lombok + MapStruct 组合 -->
  68. <!-- https://stackoverflow.com/questions/33483697/re-run-spring-boot-configuration-annotation-processor-to-update-generated-metada -->
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-compiler-plugin</artifactId>
  72. <version>${maven-compiler-plugin.version}</version>
  73. <configuration>
  74. <annotationProcessorPaths>
  75. <path>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-configuration-processor</artifactId>
  78. <version>${spring.boot.version}</version>
  79. </path>
  80. <path>
  81. <groupId>org.projectlombok</groupId>
  82. <artifactId>lombok</artifactId>
  83. <version>${lombok.version}</version>
  84. </path>
  85. <path>
  86. <groupId>org.mapstruct</groupId>
  87. <artifactId>mapstruct-processor</artifactId>
  88. <version>${mapstruct.version}</version>
  89. </path>
  90. </annotationProcessorPaths>
  91. </configuration>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.codehaus.mojo</groupId>
  95. <artifactId>flatten-maven-plugin</artifactId>
  96. </plugin>
  97. </plugins>
  98. </pluginManagement>
  99. <plugins>
  100. <!-- 统一 revision 版本 -->
  101. <plugin>
  102. <groupId>org.codehaus.mojo</groupId>
  103. <artifactId>flatten-maven-plugin</artifactId>
  104. <version>${flatten-maven-plugin.version}</version>
  105. <configuration>
  106. <flattenMode>resolveCiFriendliesOnly</flattenMode>
  107. <updatePomFile>true</updatePomFile>
  108. </configuration>
  109. <executions>
  110. <execution>
  111. <goals>
  112. <goal>flatten</goal>
  113. </goals>
  114. <id>flatten</id>
  115. <phase>process-resources</phase>
  116. </execution>
  117. <execution>
  118. <goals>
  119. <goal>clean</goal>
  120. </goals>
  121. <id>flatten.clean</id>
  122. <phase>clean</phase>
  123. </execution>
  124. </executions>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. <!-- 使用 huawei / aliyun 的 Maven 源,提升下载速度 -->
  129. <repositories>
  130. <repository>
  131. <id>huaweicloud</id>
  132. <name>huawei</name>
  133. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  134. </repository>
  135. <repository>
  136. <id>aliyunmaven</id>
  137. <name>aliyun</name>
  138. <url>https://maven.aliyun.com/repository/public</url>
  139. </repository>
  140. </repositories>
  141. </project>