Skip to content

A fully-compliant Java wrapper for the Modrinth API

License

Notifications You must be signed in to change notification settings

masecla22/Modrinth4J

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Modrinth4J

A fully-compliant blazing fast Java wrapper for the Modrinth API

Features:

This API presents a (more than) full up-to-date coverage of the Modrinth API, allowing for intuitive native integration with existing java projects.

Adding to a project:

Stable Release Channel

Modrinth4J is distributed through Maven Central, so just adding the following is enough.

Gradle:

dependencies {
      implementation 'dev.masecla:Modrinth4J:2.0.0'
}

Maven

<dependency>
    <groupId>dev.masecla</groupId>
    <artifactId>Modrinth4J</artifactId>
    <version>2.0.0</version>
</dependency>

Bleeding Edge

The following is for running Modrinth4J on the bleeding edge.

Gradle:

Add jitpack to the gradle repositories:

repositories { 
     maven { url "https://jitpack.io" }
}

Add Modrinth4J from jitpack to the dependencies:

dependencies {
      implementation 'com.github.masecla22:Modrinth4J:master-SNAPSHOT'
}

Maven:

Add jitpack to your maven repositories:

<repositories>
  <repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
  </repository>
</repositories>

Add Modrinth4J from jitpack:

<dependency>
    <groupId>com.github.masecla22</groupId>
    <artifactId>Modrinth4J</artifactId>
    <version>master-SNAPSHOT</version>
</dependency>

Examples:

[insert examples]

About

A fully-compliant Java wrapper for the Modrinth API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages