<?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>base</artifactId>
        <groupId>cn.detachment</groupId>
        <version>1.0.8-RELEASE</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>example</artifactId>

    <properties>
        <maven.deploy.skip>true</maven.deploy.skip>
    </properties>

    <dependencies>
        <dependency>
            <groupId>cn.detachment</groupId>
            <artifactId>core</artifactId>
            <version>1.0.8-RELEASE</version>
        </dependency>
        <dependency>
            <groupId>cn.detachment</groupId>
            <artifactId>web</artifactId>
            <version>1.0.8-RELEASE</version>
        </dependency>
        <dependency>
            <groupId>cn.detachment</groupId>
            <artifactId>detach-es</artifactId>
            <version>1.0.8-RELEASE</version>
        </dependency>
        <dependency>
            <groupId>cn.detachment</groupId>
            <artifactId>detach-api</artifactId>
            <version>1.0.8-RELEASE</version>
        </dependency>
    </dependencies>
    <profiles>
        <profile>
            <id>deploy</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-deploy-plugin</artifactId>
                        <version>2.8.2</version>
                        <configuration>
                            <skip>true</skip>
                        </configuration>
                    </plugin>
                </plugins>
            </build>

        </profile>

    </profiles>

</project>