This project is a collection of classes and utilities necessary for building a DCOS service. It is written in Java and is Java 1.8+ compatible.
./gradlew build
./gradlew publishToMavenLocal
The releases are hosted at the Maven repository at downloads.mesosphere.com
. A sample build.gradle
is provided below.
repositories {
// other repositories
maven {
url "http://downloads.mesosphere.com/maven/"
}
}
dependencies {
// other dependencies
compile "mesosphere:dcos-commons:+"
}