edu.wpi.first.GradleRIO
Owner: WPI Robotics Library
Managing FRC projects, the Gradle way (2019+)
https://github.com/wpilibsuite/GradleRIO
Sources: https://github.com/Open-RIO/GradleRIO
Version 2022.1.1-beta-3
Created 28 November 2021.
Managing FRC projects, the Gradle way (2019+)
Add this plugin to your build using the plugins DSL:
plugins {
id("edu.wpi.first.GradleRIO") version "2022.1.1-beta-3"
}
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("edu.wpi.first.GradleRIO:edu.wpi.first.GradleRIO.gradle.plugin:2022.1.1-beta-3") }
It can then be applied in the precompiled script plugin:plugins { id("edu.wpi.first.GradleRIO") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("edu.wpi.first.GradleRIO:edu.wpi.first.GradleRIO.gradle.plugin:2022.1.1-beta-3") } } apply(plugin = "edu.wpi.first.GradleRIO")
- Applying plugins to all subprojects .