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