pom.xml 1.3 KB
Newer Older
zlt2000's avatar
zlt2000 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
<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>com.zlt</groupId>
        <artifactId>zlt-demo</artifactId>
        <version>1.4.0</version>
    </parent>
    <artifactId>txlcn-demo</artifactId>
    <description>txlcn分布式事务demo</description>
    <packaging>pom</packaging>
    <modules>
        <!-- 公共 -->
        <module>txlcn-demo-common</module>
        <!-- 服务a -->
        <module>txlcn-demo-spring-service-a</module>
        <!-- 服务b -->
        <module>txlcn-demo-spring-service-b</module>
        <!-- 服务c -->
        <module>txlcn-demo-spring-service-c</module>
    </modules>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
        <finalName>${project.artifactId}</finalName>
    </build>
</project>