Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vankka/minecraftdependencydownload
A library to download & load dependencies during runtime for Minecraft mods & plugins
https://github.com/vankka/minecraftdependencydownload
bukkit-library bungeecord-library fabric-library java minecraft velocity-library
Last synced: about 2 months ago
JSON representation
A library to download & load dependencies during runtime for Minecraft mods & plugins
- Host: GitHub
- URL: https://github.com/vankka/minecraftdependencydownload
- Owner: Vankka
- License: mit
- Created: 2021-06-10T15:16:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-20T14:17:35.000Z (5 months ago)
- Last Synced: 2024-10-11T03:22:10.880Z (2 months ago)
- Topics: bukkit-library, bungeecord-library, fabric-library, java, minecraft, velocity-library
- Language: Java
- Homepage:
- Size: 179 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# MinecraftDependencyDownload
[![Maven Central](https://img.shields.io/maven-central/v/dev.vankka/minecraftdependencydownload-common?label=release)](https://central.sonatype.com/search?q=g%3Adev.vankka+minecraftdependencydownload)
[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/dev.vankka/minecraftdependencydownload-common?label=dev&server=https%3A%2F%2Fs01.oss.sonatype.org)](https://s01.oss.sonatype.org/#view-repositories;snapshots~browsestorage~dev/vankka)Minecraft implementations for [DependencyDownload](https://github.com/Vankka/DependencyDownload)
Heavily inspired by [LuckPerms](https://github.com/lucko/LuckPerms)' dependency management system
## Dependency
```groovy
repositories {
mavenCentral()
}dependencies {
implementation 'dev.vankka:minecraftdependencydownload-:1.0.0'
}
```Snapshots
```groovy
repositories {
maven {
url 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
}
}dependencies {
implementation 'dev.vankka:minecraftdependencydownload-:1.0.1-SNAPSHOT'
}
```## How to use it?
The [Wiki](https://github.com/Vankka/MinecraftDependencyDownload/wiki) has guides for the following platforms:
- [Bukkit](https://github.com/Vankka/MinecraftDependencyDownload/wiki/Bukkit)
- [BungeeCord](https://github.com/Vankka/MinecraftDependencyDownload/wiki/Bungee)
- [Sponge](https://github.com/Vankka/MinecraftDependencyDownload/wiki/Sponge)
- [Velocity](https://github.com/Vankka/MinecraftDependencyDownload/wiki/Velocity)with more to come