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