blob: e03bd4e37e61c52a7178d9719b9d8ad2f57642eb [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.3-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>nephele-examples</artifactId>
<name>nephele-examples</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>eu.stratosphere</groupId>
<artifactId>nephele-common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/executable.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>generate-package</id>
<phase>package</phase>
<goals>
<goal>directory-single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>