blob: e2764559331405921111c091acb8bd4550b5c6aa [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.3-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>pact-scala-examples</artifactId>
<name>pact-scala-examples</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>eu.stratosphere</groupId>
<artifactId>pact-scala-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.stratosphere</groupId>
<artifactId>pact-clients</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>eu.stratosphere</groupId>
<artifactId>pact-examples</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>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>KMeans</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>KMeans</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.scala.examples.datamining.KMeans</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/datamining/KMeans*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>ComputeEdgeDegrees</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>ComputeEdgeDegrees</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.scala.examples.graph.ComputeEdgeDegrees</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/graph/ComputeEdgeDegrees*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>EnumTrianglesOnEdgesWithDegrees</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>EnumTrianglesOnEdgesWithDegrees</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.scala.examples.graph.EnumTrianglesOnEdgesWithDegrees</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/graph/EnumTrianglesOnEdgesWithDegrees*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>TPCHQuery3</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>TPCHQuery3</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.scala.examples.relational.TPCHQuery3</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/relational/TPCHQuery3*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>WordCount</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>WordCount</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.scala.examples.wordcount.WordCount</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/wordcount/WordCount*.class</include>
</includes>
</configuration>
</execution>
<!-- These programs require support for iterations...
<execution>
<id>ConnectedComponents</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>ConnectedComponents</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.scala.examples.graph.ConnectedComponentsDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/graph/ConnectedComponents*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>TransitiveClosureNaive</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>TransitiveClosureNaive</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.scala.examples.graph.TransitiveClosureNaiveDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/graph/TransitiveClosureNaive*.class</include>
</includes>
</configuration>
</execution>
<execution>
<id>TransitiveClosureRD</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>TransitiveClosureRD</classifier>
<archive>
<manifestEntries>
<Pact-Assembler-Class>eu.stratosphere.scala.examples.graph.TransitiveClosureRDDescriptor</Pact-Assembler-Class>
</manifestEntries>
</archive>
<includes>
<include>**/graph/TransitiveClosureRD*.class</include>
</includes>
</configuration>
</execution>
-->
</executions>
</plugin>
</plugins>
</build>
</project>