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.
- Host: GitHub
- URL: https://github.com/luiz-otavio/ptero-bukkit
- Owner: luiz-otavio
- License: mit
- Created: 2022-10-31T18:02:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T15:44:58.000Z (almost 3 years ago)
- Last Synced: 2025-04-08T20:51:18.169Z (about 1 year ago)
- Topics: auto-deploy, bukkit, java, minecraft, pterodactyl, pterodactyl-api, pterodactyl-panel
- Language: Java
- Homepage:
- Size: 189 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```