59 lines
1.8 KiB
XML
59 lines
1.8 KiB
XML
<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>
|
|
<parent>
|
|
<artifactId>x4o</artifactId>
|
|
<groupId>org.x4o</groupId>
|
|
<version>0.8.5-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>x4o-elddoc</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>x4o-elddoc</name>
|
|
<description>x4o-elddoc</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-driver</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.odysseus.juel</groupId>
|
|
<artifactId>juel</artifactId>
|
|
<version>${juel.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.x4o</groupId>
|
|
<artifactId>x4o-driver</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xerces</groupId>
|
|
<artifactId>xercesImpl</artifactId>
|
|
<version>${xerces.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<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>
|