MVN

net.sf.clirr : clirr-core

Maven & Gradle

Feb 12, 2006
3 usages

Clirr · Clirr is a tool that checks Java libraries for binary compatibility with older releases. Basically you give it two sets of jar files and Clirr dumps out a list of changes in the public api. Clirr provides an Ant task that can be configured to break the build if it detects incompatible api changes. In a continuous integration process Clirr can automatically prevent accidental introduction of binary compatibility problems in Java libraries.

<dependency>
    <groupId>net.sf.clirr</groupId>
    <artifactId>clirr-core</artifactId>
    <version>0.6</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sf.clirr : clirr-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.6

All Versions

Choose a version of net.sf.clirr : clirr-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.6
clirr-core-0.6

How to add a dependency to Maven

Add the following net.sf.clirr : clirr-core maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.sf.clirr</groupId>
    <artifactId>clirr-core</artifactId>
    <version>0.6</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.sf.clirr : clirr-core gradle dependency to your build.gradle file:

implementation 'net.sf.clirr:clirr-core:0.6'

Gradle Kotlin DSL: Add the following net.sf.clirr : clirr-core gradle kotlin dependency to your build.gradle.kts file:

implementation("net.sf.clirr:clirr-core:0.6")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.sf.clirr : clirr-core sbt scala dependency to your build.sbt file:

libraryDependencies += "net.sf.clirr" % "clirr-core" % "0.6"

Advertisement