simulation-integration-tests
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.mstream-trader</groupId>
<artifactId>simulation-integration-tests</artifactId>
<version>1.18</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.mstream-trader</groupId>
<artifactId>simulation-parent</artifactId>
<version>1.18</version>
</parent>
<artifactId>simulation-integration-tests</artifactId>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<systemPropertyVariables>
<ZK_CONNECTION_STRING>ZK_CONNECTION_STRING
</ZK_CONNECTION_STRING>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.mstream-trader</groupId>
<artifactId>simulation</artifactId>
<version>1.18</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.ratpack</groupId>
<artifactId>ratpack-guice</artifactId>
<version>${ratpackVersion}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>