-
-
Notifications
You must be signed in to change notification settings - Fork 42
API (for developers)
Ραφαήλ Φωτακίδης edited this page Mar 5, 2024
·
4 revisions
Releases and betas are published to Maven Central
Using snapshot builds
Snapshot builds are available on the Sonatype snapshots maven repository:
https://s01.oss.sonatype.org/content/repositories/snapshots/
Consult your build tool's documentation for details on adding maven repositories to your project.
Maven
<dependency>
<groupId>de.hexaoxi</groupId>
<artifactId>carbonchat-api</artifactId>
<version>3.0.0-beta.26</version>
<scope>provided</scope>
</dependency>
Gradle
repositories {
mavenCentral()
}
dependencies {
compileOnly("de.hexaoxi:carbonchat-api:3.0.0-beta.26")
}