Skip to main content

Current Version

The Cloud-Inject SDK & Plugin are available on maven central.

Here are the current available versions:

ModuleVersion
cloud-injectMaven Central
cloud-inject-gradleMaven Central

Maven Repository

Cloud-Inject is directly available in Maven Central, the worldwide global Maven repository. You don't need anything to do apart using mavenCentral()

Maven Central

Maven central is by default already included in most configuration. Double check you have the following repository:

repositories {
// main
mavenCentral()
}

Github

A backup Maven repository exists if Maven Central is not responding. To use the Kotzilla's Github Packages, use the following url:

repositories {
// Kotzilla Github
maven {
url = uri("https://maven.pkg.github.com/kotzilla-io/cloud-inject")
credentials {
// Your Github credentials here
username = localProperties.getProperty("GH_USER")
password = localProperties.getProperty("GH_TOKEN")
}
}
}