pom.xml 1.71 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>com.yoho</groupId>
        <artifactId>parent</artifactId>
        <version>1.3.4-SNAPSHOT</version>
    </parent>
    <groupId>com.yoho.quartz</groupId>
    <artifactId>yoho-quartz</artifactId>
    <packaging>pom</packaging>
    <version>1.3.4-SNAPSHOT</version>
    <modules>
        <module>yoho-quartz-client</module>
        <module>yoho-quartz-common</module>
        <module>yoho-quartz-server</module>
        <module>yoho-quartz-web</module>
    </modules>
    <dependencies>


    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <distributionManagement>
        <repository>
            <id>releases</id>
            <name>Internal Releases</name>
            <url>http://192.168.102.168:18081/nexus/content/repositories/releases</url>
        </repository>
        <snapshotRepository>
            <id>snapshots</id>
            <name>Internal snapshots</name>
            <url>http://192.168.102.168:18081/nexus/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

</project>