Awaitility.
A Java DSL for synchronizing asynchronous operations.
Here is the list of declaration for awaitility. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.jayway.awaitility</groupId> <artifactId>awaitility</artifactId> <version>1.3.3</version> </dependency>
If you think this Maven repository POM file listing for awaitility is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The awaitility-1.3.3 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1256 |
Byte Code | cglib-nodep 2.2 Code generation library with shaded ASM dependecies | 283 |
Development | objenesis 1.2 A library for instantiating Java objects | 72 |
The following plugins are used in the awaitility-1.3.3.jar
The following packages are defined in the awaitility-1.3.3.jar
com.jayway.awaitility com.jayway.awaitility.core com.jayway.awaitility.proxy com.jayway.awaitility.reflect com.jayway.awaitility.reflect.exception com.jayway.awaitility.spi
Here is the content of the POM file.
<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.jayway.awaitility</groupId> <artifactId>awaitility-parent</artifactId> <version>1.3.3</version> </parent> <groupId>com.jayway.awaitility</groupId> <artifactId>awaitility</artifactId> <packaging>jar</packaging> <url>http://github.com/jayway/awaitility</url> <name>Awaitility</name> <description>A Java DSL for synchronizing asynchronous operations</description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>1.2</version> </dependency> </dependencies> </project>