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