edu.wpi.first.nativeutils.NativeUtils
Owner: WPI Robotics Library
This plugin provides native build utilities for FRC projects.
https://github.com/ThadHouse/native-utils
Sources: https://github.com/ThadHouse/native-utils
Version 0.1-beta (latest)
Created 21 July 2017.
This plugin provides native build utilities for FRC projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("edu.wpi.first.nativeutils.NativeUtils") version "0.1-beta"
}
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.nativeutils.NativeUtils:edu.wpi.first.nativeutils.NativeUtils.gradle.plugin:0.1-beta") }
It can then be applied in the precompiled script plugin:plugins { id("edu.wpi.first.nativeutils.NativeUtils") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("edu.wpi.first.nativeutils.NativeUtils:edu.wpi.first.nativeutils.NativeUtils.gradle.plugin:0.1-beta") } } apply(plugin = "edu.wpi.first.nativeutils.NativeUtils")
- Applying plugins to all subprojects .