blob: 9a9f8a2087da8d51d0453a5f407a4576b00749fa [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>
<parent>
<artifactId>malhar-demos</artifactId>
<groupId>com.datatorrent</groupId>
<version>3.0.0-RC3</version>
</parent>
<groupId>com.datatorrent</groupId>
<version>3.0.0-RC3</version>
<artifactId>echoserver</artifactId>
<packaging>jar</packaging>
<!-- change these to the appropriate values -->
<name>EchoServer Demo</name>
<description>A demo server that echos data sent by a network client back to it</description>
<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>