2012-09-11 11:15:26 +00:00
|
|
|
<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>
|
|
|
|
<artifactId>x4o</artifactId>
|
|
|
|
<groupId>org.x4o</groupId>
|
2013-08-09 00:09:58 +00:00
|
|
|
<version>0.8.7-SNAPSHOT</version>
|
2012-09-11 11:15:26 +00:00
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
2013-08-31 20:21:03 +00:00
|
|
|
<artifactId>x4o-tool</artifactId>
|
|
|
|
<groupId>org.x4o.tool</groupId>
|
2012-09-11 11:15:26 +00:00
|
|
|
<packaging>pom</packaging>
|
2013-08-31 20:21:03 +00:00
|
|
|
<name>x4o-tool</name>
|
|
|
|
<description>x4o tools to use and plugin for other applications</description>
|
2012-09-11 11:15:26 +00:00
|
|
|
<modules>
|
2013-08-31 20:21:03 +00:00
|
|
|
<module>x4o-tool-ant-plugin</module>
|
|
|
|
<module>x4o-tool-maven-plugin</module>
|
2012-09-11 11:15:26 +00:00
|
|
|
</modules>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>${maven-site-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<siteDirectory>${project.basedir}/../src/site-child</siteDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|