How to add a dependency to Maven
Add the following vu.nl.iref : IREFtools maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>vu.nl.iref</groupId>
<artifactId>IREFtools</artifactId>
<version>0.2</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following vu.nl.iref : IREFtools gradle dependency to your build.gradle
file:
implementation 'vu.nl.iref:IREFtools:0.2'
Gradle Kotlin DSL: Add the following vu.nl.iref : IREFtools gradle kotlin dependency to your build.gradle.kts
file:
implementation("vu.nl.iref:IREFtools:0.2")
How to add a dependency to SBT Scala
SBT Scala: Add the following vu.nl.iref : IREFtools sbt scala dependency to your build.sbt
file:
libraryDependencies += "vu.nl.iref" % "IREFtools" % "0.2"