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.6.0</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.6.0 has 5 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 |
---|---|---|
Testing | hamcrest-library 1.3 Hamcrest library of matcher implementations. | 143 |
Testing | hamcrest-core 1.3 This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations. | 144 |
JUnit | junit 4.10 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. | 1957 |
Byte Code | cglib-nodep 3.1 Code generation library with shaded ASM dependecies | 23 |
Development | objenesis 2.1 A library for instantiating Java objects | 34 |
The following plugins are used in the awaitility-1.6.0.jar
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.6.0</version> </parent> <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> <properties> <hamcrest.version>1.3</hamcrest.version> </properties> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>${hamcrest.version}</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>${hamcrest.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>2.1</version> </dependency> </dependencies> </project>