pom.xml 3.46 KB
<?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>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.3.RELEASE</version>
    </parent>
    <groupId>com.viontech</groupId>
    <artifactId>fanxing3</artifactId>
    <version>3.0.1-SNAPSHOT</version>
    <packaging>pom</packaging>

    <modules>
        <module>fanxing-commons</module>
        <module>fanxing-gateway</module>
        <module>fanxing-task</module>
        <module>fanxing-forward</module>
        <module>fanxing-ops</module>
        <module>fanxing-query</module>
        <module>fanxing-collect</module>
    </modules>

    <properties>
        <skipTests>true</skipTests>
        <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
    </properties>
    <scm>
        <developerConnection>scm:git:http://git.keliuyun.com:55676/xmh/fanxing3</developerConnection>
        <tag>develop</tag>
    </scm>
    <distributionManagement>
        <repository>
            <id>vionmaven</id>
            <name>vion maven</name>
            <url>http://maven.vionyun.com:8081/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>vionmaven</id>
            <name>vion maven</name>
            <url>http://maven.vionyun.com:8081/nexus/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>


    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Hoxton.SR7</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>versions-maven-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <generateBackupPoms>false</generateBackupPoms>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5.3</version>
                <configuration>
                    <tagNameFormat>V@{project.version}</tagNameFormat>
                    <autoVersionSubmodules>true</autoVersionSubmodules>
                    <username>xmh</username>
                    <password>hbr25hYQDwhJ</password>
                    <branchName>develop</branchName>
                    <commitByProject>true</commitByProject>
                    <tagBase>http://git.keliuyun.com:55676/xmh/fanxing3/tags</tagBase>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>