pom.xml 2.06 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">

    <parent>
        <artifactId>yoho-datasync-fullsync</artifactId>
        <groupId>com.yoho.datasync.fullsync</groupId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>yoho-datasync-fullsync-starter</artifactId>

    <dependencies>

        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>

        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.10</version>
        </dependency>

        <dependency>
            <groupId>com.yoho.datasync.fullsync</groupId>
            <artifactId>yoho-datasync-fullsync-common</artifactId>
        </dependency>

        <dependency>
            <groupId>com.yoho.datasync.fullsync</groupId>
            <artifactId>yoho-datasync-fullsync-dal</artifactId>
        </dependency>

        <dependency>
            <groupId>com.yoho.datasync.fullsync</groupId>
            <artifactId>yoho-datasync-fullsync-service</artifactId>
        </dependency>
    </dependencies>

    <build>
        <finalName>yoho-datasync-fullsync</finalName>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>com.yoho.datasync.fullsync.starter.YohoFullsyncApplication</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>


</project>