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