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