pom.xml 2.8 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/maven-v4_0_0.xsd">
    <parent>
        <artifactId>yohobuy-platform-cms</artifactId>
        <groupId>com.yoho.dsf</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>

    <groupId>com.yoho.dsf.yhplatform</groupId>
    <artifactId>platform-cms-web</artifactId>

    <name>platform-cms-web</name>
    <description>Camel project that deploys the Camel Web Console, REST API, and your routes as a WAR</description>
    <url>http://www.myorganization.org</url>

    <packaging>war</packaging>

    <dependencies>
        <dependency>
            <groupId>com.yoho.dsf.yhplatform</groupId>
            <artifactId>platform-cms-cms</artifactId>
        </dependency>
        <dependency>
            <groupId>com.yoho.dsf.yhplatform</groupId>
            <artifactId>platform-cms-operations</artifactId>
        </dependency>
        <dependency>
            <groupId>com.yoho.dsf.yhplatform</groupId>
            <artifactId>platform-cms-grass</artifactId>
        </dependency>
        <dependency>
            <groupId>com.yoho.dsf.yhplatform</groupId>
            <artifactId>platform-cms-suggest</artifactId>
        </dependency>
        <dependency>
            <groupId>com.yoho.service.platform.model</groupId>
            <artifactId>platform-service-model</artifactId>
            <exclusions>
                <exclusion>
                    <artifactId>commons-logging</artifactId>
                    <groupId>commons-logging</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <finalName>platform-cms-web</finalName>
        <plugins>
            <plugin>
                <groupId>com.yoho.tools</groupId>
                <artifactId>maven-autoconfig-plugin</artifactId>
                <version>1.0.0-SNAPSHOT</version>
                <configuration>
                    <exploding>true</exploding>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>autoconfig</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>


</project>