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