gg.rohan.beak
Owner:
Rohan Goyal
Gradle plugin to help with deployment to remote servers on pterodactyl
https://github.com/AV3RG/beak/wiki
Sources: https://github.com/AV3RG/beak
Version 0.1 (latest)
Created 08 July 2024.
Gradle plugin to help with deployment to remote servers on pterodactyl
Add this plugin to your build using the plugins DSL:
plugins {
id("gg.rohan.beak") version "0.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("gg.rohan.beak:gg.rohan.beak.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("gg.rohan.beak") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gg.rohan.beak:gg.rohan.beak.gradle.plugin:0.1") } } apply(plugin = "gg.rohan.beak")
- Applying plugins to all subprojects .