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: over 1 year 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 (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-20T14:17:35.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T03:22:10.880Z (over 1 year 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
[](https://central.sonatype.com/search?q=g%3Adev.vankka+minecraftdependencydownload)
[](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