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>
|
|
|
|
<artifactId>x4o-plugin</artifactId>
|
|
|
|
<groupId>org.x4o.plugin</groupId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>x4o-plugin</name>
|
|
|
|
<description>x4o plugins for other applications</description>
|
|
|
|
<modules>
|
2013-04-08 19:44:16 +00:00
|
|
|
<module>x4o-plugin-ant</module>
|
2013-04-11 07:26:38 +00:00
|
|
|
<module>x4o-plugin-maven</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>
|