Maven Repository - POM file for Asynchronous awaitility 1.3.4 1.3.4

Summary

Awaitility.

A Java DSL for synchronizing asynchronous operations.

Declaration

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.

Depends on

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.

CategoryArtifactDepended By Count
Testinghamcrest-library 1.2.1
Hamcrest library of matcher implementations.
46
Testinghamcrest-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
JUnitjunit 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 Codecglib-nodep 2.2
Code generation library with shaded ASM dependecies
283
Developmentobjenesis 1.2
A library for instantiating Java objects
72




Depended by

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.

CategoryArtifactDepended By Count
Cacheconcurrentlinkedhashmap-lru 1.3
A high performance version of java.util.LinkedHashMap for use as a software cache.
117
Cacheconcurrentlinkedhashmap-lru 1.3.1
A high performance version of java.util.LinkedHashMap for use as a software cache.
13

Plugin

The following plugins are used in the awaitility-1.3.4.jar

  1. maven-compiler-plugin

Packages

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




POM File Source

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>