asynctest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.codebox</groupId>
<artifactId>asynctest</artifactId>
<version>1.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>net.codebox</groupId>
<artifactId>asynctest</artifactId>
<version>1.0.1</version>
<name>AsyncTest</name>
<description>This simple Java library helps you write better tests for asynchronous systems</description>
<url>https://github.com/codebox/asynctest</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>codebox</id>
<name>Rob Dawson</name>
<email>rob@codebox.net</email>
</developer>
</developers>
<scm>
<connection>scm:git@github.com:codebox/asynctest.git</connection>
<developerConnection>scm:git@github.com:codebox/asynctest.git</developerConnection>
<url>https://github.com/codebox/asynctest</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>