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