Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/masecla22/Modrinth4J

A fully-compliant Java wrapper for the Modrinth API
https://github.com/masecla22/Modrinth4J

java modrinth wrapper

Last synced: 2 months ago
JSON representation

A fully-compliant Java wrapper for the Modrinth API

Awesome Lists containing this project

README

        

Modrinth4J


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


github
java8
maven

discord-plural

## 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:
```java
dependencies {
implementation 'dev.masecla:Modrinth4J:2.0.0'
}
```

### Maven
```xml

dev.masecla
Modrinth4J
2.0.0

```

### Bleeding Edge
The following is for running Modrinth4J on the bleeding edge.
### Gradle:
Add jitpack to the gradle repositories:
```java
repositories {
maven { url "https://jitpack.io" }
}
```
Add Modrinth4J from jitpack to the dependencies:
```java
dependencies {
implementation 'com.github.masecla22:Modrinth4J:master-SNAPSHOT'
}
```

### Maven:
Add jitpack to your maven repositories:
```xml


jitpack.io
https://jitpack.io

```

Add Modrinth4J from jitpack:
```xml

com.github.masecla22
Modrinth4J
master-SNAPSHOT

```
## Examples:

[insert examples]