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.4</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.4 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.2.1 Hamcrest library of matcher implementations. | 46 |
Testing | hamcrest-core 1.2.1 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. | 34 |
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 2.2 Code generation library with shaded ASM dependecies | 283 |
Development | objenesis 1.2 A library for instantiating Java objects | 72 |
The following table lists the most popular artifacts which are depending on awaitility-1.3.4. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Cache | concurrentlinkedhashmap-lru 1.3 A high performance version of java.util.LinkedHashMap for use as a software cache. | 117 |
Cache | concurrentlinkedhashmap-lru 1.3.1 A high performance version of java.util.LinkedHashMap for use as a software cache. | 13 |
The following plugins are used in the awaitility-1.3.4.jar
The following packages are defined in the awaitility-1.3.4.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.4</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> <properties> <hamcrest.version>1.2.1</hamcrest.version> </properties> <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>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>2.2</version> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <version>1.2</version> </dependency> </dependencies> </project>