blob: e7db0b9496ad411941f89b759bfee7153fab682f [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>wordcount-demo</artifactId>
<packaging>jar</packaging>
<name>Datatorrent Wordcount Demo</name>
<description>A very simple application that demonstrates DataTorrent Platform’s streaming window feature.</description>
<parent>
<groupId>com.datatorrent</groupId>
<artifactId>malhar-demos</artifactId>
<version>3.0.0-RC3</version>
</parent>
<properties>
<!-- change this if you desire to use a different version of DataTorrent -->
<skipTests>true</skipTests>
</properties>
<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>
</project>