Maven Repository - POM file for JUnit equalsverifier 1.4.1 1.4.1

Summary

EqualsVerifier.

EqualsVerifier can be used in JUnit 4 unit tests to verify whether the contract for the equals and hashCode methods is met..

Declaration

Here is the list of declaration for equalsverifier. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>nl.jqno.equalsverifier</groupId>
   <artifactId>equalsverifier</artifactId>
   <version>1.4.1</version>
</dependency>

If you think this Maven repository POM file listing for equalsverifier is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The equalsverifier-1.4.1 has 2 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
Developmentobjenesis 1.1
A library for instantiating Java objects
18
Byte Codecglib-nodep 2.2
Code generation library with shaded ASM dependecies
283

Depended by

The following table lists the most popular artifacts which are depending on equalsverifier-1.4.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Networkspectator-api 0.14.1
spectator-api developed by Netflix
5

Packages

The following packages are defined in the equalsverifier-1.4.1.jar

nl.jqno.equalsverifier
nl.jqno.equalsverifier.util
nl.jqno.equalsverifier.util.exceptions

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>
  <groupId>nl.jqno.equalsverifier</groupId>
  <artifactId>equalsverifier</artifactId>
  <name>EqualsVerifier</name>
  <version>1.4.1</version>
  <description>EqualsVerifier can be used in JUnit 4 unit tests to verify whether the contract for the equals and hashCode methods is met.</description>
  <packaging>jar</packaging>
  <url>http://www.jqno.nl/equalsverifier</url>
  <scm>
    <url>http://github.com/jqno/equalsverifier</url>
    <connection>scm:git:https://github.com/jqno/equalsverifier</connection>
    <developerConnection>scm:git:https://github.com/jqno/equalsverifier</developerConnection>
  </scm>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
   
  <mailingLists>
    <mailingList>
      <name>General Discussion</name>
      <archive>http://groups.google.com/group/equalsverifier</archive>
    </mailingList>
  </mailingLists>
  <issueManagement>
    <url>https://code.google.com/p/equalsverifier/issues</url>
  </issueManagement>
  <dependencies>
    <dependency>
      <groupId>org.objenesis</groupId>
      <artifactId>objenesis</artifactId>
      <version>1.1</version>
    </dependency>
    <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib-nodep</artifactId>
      <version>2.2</version>
    </dependency>
  </dependencies>
</project>