blob: d931c24f85c44876fe455d635794ea3eebfc0782 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<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>pact-scala</artifactId>
<groupId>eu.stratosphere</groupId>
<version>0.4-alpha.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>pact-scala-tests</artifactId>
<name>pact-scala-tests</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>eu.stratosphere</groupId>
<artifactId>pact-scala-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<reporting>
<plugins>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.1.3</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
<!-- Ensure maven builds Java source files inside src/main/scala -->
<execution>
<id>process-resources</id>
<phase>process-resources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<!-- KMeans -->
<execution>
<id>KMeansPlainJava</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>KMeansPlainJava</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.plainJava.KMeans</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/plainJava/KMeans*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>KMeansPlainScala</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>KMeansPlainScala</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.plainScala.KMeans</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/plainScala/KMeans*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>KMeansSimNoKeySels</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>KMeansSimNoKeySels</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.simNoKeySels.KMeansDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/simNoKeySels/KMeans*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>KMeansImmutable</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>KMeansImmutable</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.immutable.KMeansDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/immutable/KMeans*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>KMeansMutable</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>KMeansMutable</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.mutable.KMeansDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/mutable/KMeans*.class</include>
</includes>
</configuration>
</execution>
<!-- TPCHQuery3 -->
<execution>
<id>TPCHQuery3PlainJava</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>TPCHQuery3PlainJava</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.plainJava.TPCHQuery3</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/plainJava/TPCHQuery3*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>TPCHQuery3PlainScala</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>TPCHQuery3PlainScala</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.plainScala.TPCHQuery3</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/plainScala/TPCHQuery3*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>TPCHQuery3SimNoKeySels</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>TPCHQuery3SimNoKeySels</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.simNoKeySels.TPCHQuery3Descriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/simNoKeySels/TPCHQuery3*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>TPCHQuery3Immutable</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>TPCHQuery3Immutable</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.immutable.TPCHQuery3Descriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/immutable/TPCHQuery3*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>TPCHQuery3Mutable</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>TPCHQuery3Mutable</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.mutable.TPCHQuery3Descriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/mutable/TPCHQuery3*.class</include>
</includes>
</configuration>
</execution>
<!-- WordCount -->
<execution>
<id>WordCountPlainJava</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>WordCountPlainJava</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.plainJava.WordCount</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/plainJava/WordCount*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>WordCountPlainScala</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>WordCountPlainScala</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.plainScala.WordCount</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/plainScala/WordCount*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>WordCountSimNoKeySels</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>WordCountSimNoKeySels</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.simNoKeySels.WordCountDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/simNoKeySels/WordCount*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>WordCountImmutable</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>WordCountImmutable</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.immutable.WordCountDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/immutable/WordCount*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>WordCountMutable</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>WordCountMutable</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.pact4s.tests.mutable.WordCountDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/mutable/WordCount*.class</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>