<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>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<groupId>ch.uzh.ifi.ddis.ifp</groupId>
	<artifactId>streams-esper</artifactId>
	<version>0.2.3</version>
	<name>Esper implementation of Streams Nodes</name>

	<licenses>
		<license>
			<name>GNU General Public License, version 2</name>
			<url>http://www.gnu.org/licenses/gpl-2.0.html</url>
		</license>
	</licenses>

	<inceptionYear>2013</inceptionYear>

	<developers>
		<developer>
			<name>Thomas Scharrenbach</name>
			<email>scharrenbach@ifi.uzh.ch</email>
			<organization>University of Zurich</organization>
			<organizationUrl>http://www.ifi.uzh.ch/ddis</organizationUrl>
		</developer>
	</developers>

	<contributors>
		<contributor>
			<name>Christian Bockermann</name>
			<email>christian.bockermann@udo.edu</email>
			<organization>Technical University of Dortmund</organization>
			<organizationUrl>http://www.tu-dortmund.de‎</organizationUrl>
		</contributor>
	</contributors>

	<organization>
		<name>University of Zurich</name>
		<url>http://www.ifi.uzh.ch</url>
	</organization>

	<url>https://bitbucket.org/scharrenbach/streams-esper</url>

	<description>The Streams-Esper project provides Esper Processors.</description>

	<issueManagement>
		<system>BitBucket</system>
		<url>https://bitbucket.org/scharrenbach/streams-esper/issues</url>
	</issueManagement>

	<scm>
		<connection>https://bitbucket.org/scharrenbach/streams-esper.git</connection>
		<developerConnection>scm:git:ssh://git@bitbucket.org/scharrenbach/streams-esper.git</developerConnection>
		<url>scm:git:ssh://git@bitbucket.org/scharrenbach/streams-esper</url>
	</scm>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>

			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>license-maven-plugin</artifactId>
				<version>1.4</version>
				<configuration>
					<verbose>false</verbose>
				</configuration>
				<executions>
					<execution>
						<id>first</id>
						<goals>
							<goal>update-file-header</goal>
						</goals>
						<phase>process-sources</phase>
						<configuration>
							<licenseName>gpl_v2</licenseName>
							<roots>
								<root>src/main/java</root>
								<root>src/test</root>
							</roots>
						</configuration>
					</execution>
				</executions>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-deploy-plugin</artifactId>
				<version>2.7</version>
			</plugin>

		</plugins>
	</build>

	<repositories>
		<!-- Only needed for testing. -->
		<repository>
			<id>clojars.org</id>
			<url>http://clojars.org/repo</url>
		</repository>
	</repositories>

	<dependencies>
		<dependency>
			<groupId>org.jwall</groupId>
			<artifactId>streams-api</artifactId>
			<version>${streams.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.jwall</groupId>
			<artifactId>streams-runtime</artifactId>
			<version>${streams.version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>com.espertech</groupId>
			<artifactId>esper</artifactId>
			<version>${esper.version}</version>
			<scope>provided</scope>
		</dependency>

		<!-- Test dependencies -->
		<dependency>
			<groupId>com.espertech</groupId>
			<artifactId>esperio-csv</artifactId>
			<version>${esper.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<version>6.8</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.jwall</groupId>
			<artifactId>streams-core</artifactId>
			<version>${streams.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.jwall</groupId>
			<artifactId>streams-storm</artifactId>
			<version>${streams.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>storm</groupId>
			<artifactId>storm</artifactId>
			<version>0.8.2</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
		<streams.version>[0.9.0,)</streams.version>
		<esper.version>[4.8.0,)</esper.version>
	</properties>

</project>
