dev.vexide.hydrozoa
Owner:
Lewis
Build & upload Gradle projects to VEX V5 robots
https://github.com/vexide/Hydrozoa-Java/tree/main/gradle-plugin
Sources: https://github.com/vexide/Hydrozoa-Java.git
Version 0.1.0-alpha.1 (latest)
Created 21 November 2024.
Build & upload Gradle projects to VEX V5 robots
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.vexide.hydrozoa") version "0.1.0-alpha.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("dev.vexide.hydrozoa:dev.vexide.hydrozoa.gradle.plugin:0.1.0-alpha.1") }
It can then be applied in the precompiled script plugin:plugins { id("dev.vexide.hydrozoa") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.vexide.hydrozoa:dev.vexide.hydrozoa.gradle.plugin:0.1.0-alpha.1") } } apply(plugin = "dev.vexide.hydrozoa")
- Applying plugins to all subprojects .