multi-module

<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.zero</groupId>
<artifactId>app.builder</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>App Builder</name>
<description>App Builder</description>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerVersion>1.6</compilerVersion>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<modules>
<module>../ABC_COMMON</module>
<module>../ABC_REF_DATA</module>
<module>../ABC_WSRS_INTERFACE/ABC_REF_SERVICE</module>
<!-- ... -->
</modules>
</project>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章