pom.xml 5.9 KB

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