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