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