- Java 17 or higher
- A supported environment listed here
You can find more documentation and examples of how to use the API on the wiki.
repositories {
maven {
name = "grimacSnapshots"
url = uri("https://repo.grim.ac/snapshots")
}
}
dependencies {
// replace %VERSION% with the latest API version
compileOnly("ac.grim.grimac:GrimAPI:%VERSION%")
}
<repository>
<id>grimac-snapshots</id>
<name>GrimAC's Maven Repository</name>
<url>https://repo.grim.ac/snapshots</url>
</repository>
<!-- replace %VERSION% with the latest API version -->
<dependency>
<groupId>ac.grim.grimac</groupId>
<artifactId>GrimAPI</artifactId>
<version>%VERSION%</version>
<scope>provided</scope>
</dependency>