blob: 7e07d8a0a378d3e0087af36df1442ef0a926a160 [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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.datatorrent</groupId>
<version>3.0.0-RC3</version>
<artifactId>pi-demo</artifactId>
<packaging>jar</packaging>
<name>DataTorrent Pi Demo</name>
<description>DataTorrent demo applications that calculate the value of Pi. This is a starting point to understand how DataTorrent works.</description>
<parent>
<groupId>com.datatorrent</groupId>
<artifactId>malhar-demos</artifactId>
<version>3.0.0-RC3</version>
</parent>
<build>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.datatorrent</groupId>
<artifactId>dt-engine</artifactId>
<version>${dt.framework.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>