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