testng4esper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.uzh.ifi.ddis.ifp</groupId> <artifactId>testng4esper</artifactId> <version>0.3.1</version> </dependency>
<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>testng4esper</artifactId> <version>0.3.1</version> <name>TestNG4Esper</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/testng4esper</url> <description>The testng4esper project provides simple test classes to facilitate testing the Esper complex event processing engine with testng.</description> <issueManagement> <system>BitBucket</system> <url>https://bitbucket.org/scharrenbach/testng4esper/issues</url> </issueManagement> <scm> <connection>https://bitbucket.org/scharrenbach/testng4esper.git</connection> <developerConnection>scm:git:ssh://git@bitbucket.org/scharrenbach/testng4esper.git</developerConnection> <url>scm:git:ssh://git@bitbucket.org/scharrenbach/testng4esper</url> <tag>testng4esper-0.3.1</tag> </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> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.4.1</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.espertech</groupId> <artifactId>esper</artifactId> <version>4.9.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>ch.uzh.ifi.ddis.ifp.esper</groupId> <artifactId>esper-statements</artifactId> <version>0.1.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <slf4j.version>1.7.5</slf4j.version> </properties> </project>