| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 | <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0</modelVersion>    <groupId>com.citu</groupId>    <artifactId>citu</artifactId>    <version>${revision}</version>    <packaging>pom</packaging>    <modules>        <module>citu-dependencies</module>        <module>citu-gateway</module>        <module>citu-framework</module>        <!--  各种 module 拓展 -->        <module>citu-module-system</module>        <module>citu-module-infra</module>        <module>citu-module-member</module>        <module>citu-module-bpm</module>        <module>citu-module-pay</module>        <module>citu-module-report</module>        <module>citu-module-mp</module>        <module>citu-module-mall</module>        <module>citu-module-erp</module>        <module>citu-module-crm</module>        <module>menduner</module>    </modules>    <name>${project.artifactId}</name>    <description>辞图基础脚手架</description>    <url>https://github.com/YunaiV/ruoyi-vue-pro</url>    <properties>        <revision>2.4.0-SNAPSHOT</revision>        <!-- Maven 相关 -->        <java.version>11</java.version>        <maven.compiler.source>${java.version}</maven.compiler.source>        <maven.compiler.target>${java.version}</maven.compiler.target>        <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>        <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>        <flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>        <!-- 看看咋放到 bom 里 -->        <lombok.version>1.18.36</lombok.version>        <spring.boot.version>2.7.18</spring.boot.version>        <mapstruct.version>1.6.2</mapstruct.version>        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    </properties>    <dependencyManagement>        <dependencies>            <dependency>                <groupId>com.citu</groupId>                <artifactId>citu-dependencies</artifactId>                <version>${revision}</version>                <type>pom</type>                <scope>import</scope>            </dependency>        </dependencies>    </dependencyManagement>    <build>        <pluginManagement>            <plugins>                <!-- maven-surefire-plugin 插件,用于运行单元测试。 -->                <!-- 注意,需要使用 3.0.X+,因为要支持 Junit 5 版本 -->                <plugin>                    <groupId>org.apache.maven.plugins</groupId>                    <artifactId>maven-surefire-plugin</artifactId>                    <version>${maven-surefire-plugin.version}</version>                </plugin>                <!-- maven-compiler-plugin 插件,解决 Lombok + MapStruct 组合 -->                <!-- https://stackoverflow.com/questions/33483697/re-run-spring-boot-configuration-annotation-processor-to-update-generated-metada -->                <plugin>                    <groupId>org.apache.maven.plugins</groupId>                    <artifactId>maven-compiler-plugin</artifactId>                    <version>${maven-compiler-plugin.version}</version>                    <configuration>                        <annotationProcessorPaths>                            <path>                                <groupId>org.springframework.boot</groupId>                                <artifactId>spring-boot-configuration-processor</artifactId>                                <version>${spring.boot.version}</version>                            </path>                            <path>                                <groupId>org.projectlombok</groupId>                                <artifactId>lombok</artifactId>                                <version>${lombok.version}</version>                            </path>                            <path>                                <groupId>org.mapstruct</groupId>                                <artifactId>mapstruct-processor</artifactId>                                <version>${mapstruct.version}</version>                            </path>                        </annotationProcessorPaths>                    </configuration>                </plugin>            </plugins>        </pluginManagement>        <plugins>            <!-- 统一 revision 版本 -->            <plugin>                <groupId>org.codehaus.mojo</groupId>                <artifactId>flatten-maven-plugin</artifactId>                <version>${flatten-maven-plugin.version}</version>                <configuration>                    <flattenMode>oss</flattenMode>                    <updatePomFile>true</updatePomFile>                </configuration>                <executions>                    <execution>                        <goals>                            <goal>flatten</goal>                        </goals>                        <id>flatten</id>                        <phase>process-resources</phase>                    </execution>                    <execution>                        <goals>                            <goal>clean</goal>                        </goals>                        <id>flatten.clean</id>                        <phase>clean</phase>                    </execution>                </executions>            </plugin>        </plugins>    </build>    <!-- 使用 huawei / aliyun 的 Maven 源,提升下载速度 -->    <repositories>        <repository>            <id>huaweicloud</id>            <name>huawei</name>            <url>https://mirrors.huaweicloud.com/repository/maven/</url>        </repository>        <repository>            <id>aliyunmaven</id>            <name>aliyun</name>            <url>https://maven.aliyun.com/repository/public</url>        </repository>    </repositories></project>
 |