jaci.openrio.gradle.GradleRIO
Owner: Jacinta Brunning
GradleRIO plugin for developing FRC Java Software.
https://github.com/Open-RIO/GradleRIO
Sources: https://github.com/Open-RIO/GradleRIO
Version 2018.03.06 (latest)
Created 06 March 2018.
Managing FRC projects, the Gradle way
Add this plugin to your build using the plugins DSL:
plugins {
id("jaci.openrio.gradle.GradleRIO") version "2018.03.06"
}
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("jaci.openrio.gradle.GradleRIO:jaci.openrio.gradle.GradleRIO.gradle.plugin:2018.03.06") }
It can then be applied in the precompiled script plugin:plugins { id("jaci.openrio.gradle.GradleRIO") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("jaci.openrio.gradle.GradleRIO:jaci.openrio.gradle.GradleRIO.gradle.plugin:2018.03.06") } } apply(plugin = "jaci.openrio.gradle.GradleRIO")
- Applying plugins to all subprojects .