MVN

org.pojomatic : pojomatic-test-utils

Maven & Gradle

Apr 25, 2010

PojomaticTestUtils · Utilities to help with writing tests for, or using, classes which use Pojomatic. This library includes classes with JUnit and TestNG style assertEquals methods which include differences (via Pojomatic.diff(Object, Object)) in the error message if the assertion fails.

<dependency>
    <groupId>org.pojomatic</groupId>
    <artifactId>pojomatic-test-utils</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.pojomatic : pojomatic-test-utils to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0
  • Latest Release Candidate: 1.0-RC3

All Versions

Choose a version of org.pojomatic : pojomatic-test-utils to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
pojomatic-test-utils-1.0
pojomatic-test-utils-1.0-RC3

How to add a dependency to Maven

Add the following org.pojomatic : pojomatic-test-utils maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.pojomatic</groupId>
    <artifactId>pojomatic-test-utils</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.pojomatic : pojomatic-test-utils gradle dependency to your build.gradle file:

implementation 'org.pojomatic:pojomatic-test-utils:1.0'

Gradle Kotlin DSL: Add the following org.pojomatic : pojomatic-test-utils gradle kotlin dependency to your build.gradle.kts file:

implementation("org.pojomatic:pojomatic-test-utils:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.pojomatic : pojomatic-test-utils sbt scala dependency to your build.sbt file:

libraryDependencies += "org.pojomatic" % "pojomatic-test-utils" % "1.0"