Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 715 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 715 Bytes

CurseForgeJavaAPI

An unoficial Java wrapper for the CurseForge API.

Adding the dependency

With Maven:

  <dependency>
    <groupId>io.github.matyrobbrt</groupId>
    <artifactId>curseforgeapi</artifactId>
    <version>CF-API-VERSION</version>
    <scope>compile</scope>
  </dependency>

With Gradle:

repositories {
    mavenCentral()
}

dependencies {
    implementation 'io.github.matyrobbrt:curseforgeapi:CF-API-VERSION'
}

Latest versions can be found on Maven.

Using the library

See the Getting Started page on how to use this library!