Files
starRiverProperty/maven-cw-elevator-application/pom.xml
T
反编译工作区 8b15445328 feat: add service config templates and extraction script
Former-commit-id: 1de24b7eb79676d1aba9d799a58c5a753290cf52
2026-05-01 19:38:01 +08:00

70 lines
3.2 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>
<parent>
<groupId>cn.cloudwalk.elevator</groupId>
<artifactId>cw-elevator-application</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>cw-elevator-application/pom.xml</relativePath>
</parent>
<artifactId>cw-elevator-application-reactor</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>cw-elevator-application (Maven reactor)</name>
<description>聚合模块:common → data → service → web → starter。继承 V1 父 POMcw-elevator-application 1.0-SNAPSHOT)真源;业务版本 2.0-SNAPSHOT。</description>
<modules>
<module>cw-elevator-application-common</module>
<module>cw-elevator-application-data</module>
<module>cw-elevator-application-service</module>
<module>cw-elevator-application-web</module>
<module>cw-elevator-application-starter</module>
</modules>
<properties>
<!-- 与 V1 运行包 lib 目录对照(基于 reactor 根路径) -->
<cw.elevator.v1.lib.dir>${project.basedir}/../cw-elevator-application-V1.0.0.20211103/lib</cw.elevator.v1.lib.dir>
<!-- spring-boot-maven-plugin repackage 产出的可执行 JAR 文件名(不含 .jar) -->
<elevator.release.finalName>cw-elevator-application-2.0.9</elevator.release.finalName>
<!-- 子模块覆盖父 POM 中相对于 cw-elevator-application/ 的 codestyle 路径 -->
<alibaba.eclipse.codestyle.path>${project.basedir}/../docs/style/alibaba-eclipse-codestyle.xml</alibaba.eclipse.codestyle.path>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-jdk8</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8,1.9)</version>
<message>与原始运行包一致须使用 JDK 8 启动 Maven;见 docs/build/ORIGINAL_BUILD_JDK.txt</message>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>