pom.xml 1.79 KB
Newer Older
liu_cheng_jiu's avatar
liu_cheng_jiu committed
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         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>
    <artifactId>server-all</artifactId>
    <packaging>jar</packaging>

    <parent>
        <groupId>cn.exploring.engine</groupId>
        <artifactId>server</artifactId>
        <version>0.1.0</version>
    </parent>

    <dependencies>

        <dependency>
            <groupId>cn.exploring.engine</groupId>
            <artifactId>server-core</artifactId>
        </dependency>

        <dependency>
            <groupId>cn.exploring.engine</groupId>
            <artifactId>server-db</artifactId>
        </dependency>

        <dependency>
            <groupId>cn.exploring.engine</groupId>
            <artifactId>server-wx-api</artifactId>
        </dependency>

        <dependency>
            <groupId>cn.exploring.engine</groupId>
            <artifactId>server-admin-api</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <executable>true</executable>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                        <configuration>
                            <classifier>exec</classifier>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>