<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> <groupId>fr.in2p3.jsaga</groupId> <artifactId>jsaga</artifactId> <version>0.9.17-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.ogf.saga</groupId> <artifactId>saga-api-test</artifactId> <name>The integration test suite for adaptors</name> <description>This module contains a generic test-suite for validating SAGA implementations. It is used for validating both the JSAGA engine and its adaptors. </description> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <docletArtifact> <groupId>com.jeldoclet</groupId> <artifactId>jeldoclet</artifactId> <version>1.0</version> </docletArtifact> <doclet>com.jeldoclet.JELDoclet</doclet> <useStandardDocletOptions>false</useStandardDocletOptions> </configuration> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>org.ogf.saga</groupId> <artifactId>saga-api</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> </dependency> </dependencies> </project>