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

https://github.com/luiz-otavio/ptero-bukkit

Small library to auto-deploy signed pterodactyl servers to players in a Minecraft Server.
https://github.com/luiz-otavio/ptero-bukkit

auto-deploy bukkit java minecraft pterodactyl pterodactyl-api pterodactyl-panel

Last synced: about 2 months ago
JSON representation

Small library to auto-deploy signed pterodactyl servers to players in a Minecraft Server.

Awesome Lists containing this project

README

          

# How to use it
First, you need to include the repository in your `pom.xml` or `build.gradle`:
```xml


luiz-otavio

https://maven.pkg.github.com/luiz-otavio/ptero-bukkit


net.luxcube.pterodactyl
bukkit
0.0.1-SNAPSHOT


net.luxcube.pterodactyl
binder
0.0.1-SNAPSHOT
runtime

```

```groovy
repositories {
maven {
name = "luiz-otavio"
url = "https://maven.pkg.github.com/luiz-otavio/ptero-bukkit"
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}

dependencies {
implementation 'net.luxcube.pterodactyl:bukkit:0.0.1-SNAPSHOT'
runtimeOnly 'net.luxcube.pterodactyl:binder:0.0.1-SNAPSHOT'
}
```

Then, you can retrieve the pterodactyl instance using the `PteroBukkit`:
```java
PteroBukkit ptero = PteroBukkit.createInstance(URL, APP_KEY, CLIENT_KEY, N_THREADS, PLUGIN);
```