blob: 891ebf8164fd72cd3d16933e78f737d038fcbc96 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>nephele</artifactId>
<groupId>eu.stratosphere</groupId>
<version>0.4-alpha.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>nephele-server</artifactId>
<name>nephele-server</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>eu.stratosphere</groupId>
<artifactId>nephele-management</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- we need to execute tests in target/test-classes so that the config
files are found -->
<workingDirectory>${project.build.testOutputDirectory}</workingDirectory>
<excludes>
<!-- Start failing Unit Tests - Remove exclusion when fixed! -->
<exclude>**/*DiscoveryService*</exclude>
<!-- End failing Unit Tests -->
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<workingDirectory>${project.build.testOutputDirectory}</workingDirectory>
<excludes>
<exclude>**/TestInstanceListener.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>