Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/masecla22/Modrinth4J
- Owner: masecla22
- License: mit
- Created: 2022-12-16T13:57:16.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-15T12:07:45.000Z (11 months ago)
- Last Synced: 2024-08-02T11:16:32.925Z (5 months ago)
- Topics: java, modrinth, wrapper
- Language: Java
- Homepage:
- Size: 422 KB
- Stars: 14
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - masecla22/Modrinth4J - A fluent CompletableFuture-based Java wrapper for the Modrinth API (Libraries)
README
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:
```java
dependencies {
implementation 'dev.masecla:Modrinth4J:2.0.0'
}
```### Maven
```xmldev.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:
```xmlcom.github.masecla22
Modrinth4J
master-SNAPSHOT```
## Examples:[insert examples]