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