How to add a dependency to Maven
Add the following zone.gryphon.maven : maven-version-comparison-rules maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>zone.gryphon.maven</groupId>
<artifactId>maven-version-comparison-rules</artifactId>
<version>1.0.8-23c82c2</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following zone.gryphon.maven : maven-version-comparison-rules gradle dependency to your build.gradle
file:
implementation 'zone.gryphon.maven:maven-version-comparison-rules:1.0.8-23c82c2'
Gradle Kotlin DSL: Add the following zone.gryphon.maven : maven-version-comparison-rules gradle kotlin dependency to your build.gradle.kts
file:
implementation("zone.gryphon.maven:maven-version-comparison-rules:1.0.8-23c82c2")
How to add a dependency to SBT Scala
SBT Scala: Add the following zone.gryphon.maven : maven-version-comparison-rules sbt scala dependency to your build.sbt
file:
libraryDependencies += "zone.gryphon.maven" % "maven-version-comparison-rules" % "1.0.8-23c82c2"