Getting Started with the API
To start, add the Open Collaboration repository to your project:
Maven
<repository>
<id>opencollab-snapshot</id>
<url>https://repo.opencollab.dev/main/</url>
</repository>
The "main" repository contains both release and snapshot versions.
Gradle
repositories {
maven {
url = uri("https://repo.opencollab.dev/main/")
}
}