Approval confirmation
Approval confirmation
Delete plugin confirmation
To confirm the plugin deletion insert pluginId and author name
WPI Robotics Library
edu.wpi.first.NativeUtils
PluginId
Author
edu.wpi.first.NativeUtils
Owner: WPI Robotics Library
This plugin provides native build utilities for FRC projects.
Version 2025.7.0
2025.7.0
Created 30 November 2024.
This plugin provides native build utilities for FRC projects.
Other versions
- 2025.9.0
- 2025.8.0
- 2025.7.1
- 2025.6.0
- 2025.4.0
- 2025.3.0
- 2025.2.0
- 2025.1.0
- 2025.0.0
- 2024.7.2
- 2024.7.1
- 2024.7.0
- 2024.6.1
- 2024.6.0
- 2024.5.2
- 2024.5.1
- 2024.5.0
- 2024.4.0
- 2024.3.2
- 2024.3.1
- 2024.3.0
- 2024.2.0
- 2024.1.0
- 2024.0.0
- 2023.11.1
- 2023.11.0
- 2023.10.0
- 2023.9.0
- 2023.8.2
- 2023.8.1
- 2023.8.0
- 2023.7.0
- 2023.6.1
- 2023.6.0
- 2023.5.0
- 2023.4.1
- 2023.4.0
- 2023.3.0
- 2023.2.8
- 2023.2.7
- 2023.2.6
- 2023.2.5
- 2023.2.4
- 2023.2.3
- 2023.2.2
- 2023.2.1
- 2023.2.0
- 2023.1.0
- 2023.0.8
- 2023.0.7
- 2023.0.6
- 2023.0.5
- 2023.0.4
- 2023.0.3
- 2023.0.2
- 2023.0.1
- 2023.0.0
- 2022.8.2
- 2022.8.1
- 2022.7.1
- 2022.6.1
- 2022.5.1
- 2022.4.4
- 2022.4.3
- 2022.4.2
- 2022.4.1
- 2022.3.1
- 2022.3.0
- 2022.2.0
- 2022.1.0
- 2022.0.2
- 2022.0.0
- 2021.1.1
- 2021.1.0
- 2021.0.6
- 2021.0.5
- 2021.0.4
- 2021.0.3
- 2021.0.2
- 2021.0.1
- 2021.0.0
- 2020.10.1
- 2020.10.0
- 2020.9.4
- 2020.9.3
- 2020.9.2
- 2020.9.1
- 2020.9.0
- 2020.8.2
- 2020.8.1
- 2020.8.0
- 2020.7.4
- 2020.7.3
- 2020.7.2
- 2020.7.1
- 2020.6.1
- 2020.5.2
- 2020.5.1
- 2020.5.0
- 2020.4.1
- 2020.4.0
- 2020.1.5
- 2020.1.4
- 2020.1.3
- 2020.1.2
- 2020.1.1
- 2020.1.0
- 2020.0.8
- 2020.0.7
- 2020.0.6
- 2020.0.5
- 2020.0.4
- 2020.0.3
- 2020.0.2
- 2020.0.1
- 2020.0.0
- 2019.5.15
- 2019.5.12
- 2019.5.10
- 2019.5.9
- 2019.5.8
- 2019.5.6
- 2019.5.4
- 2019.5.3
- 2019.5.2
- 2019.5.1
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.1
- 2.0.0
- 1.8.0
- 1.7.7
- 1.7.6
- 1.7.5
- 1.7.4
- 1.7.3
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.7
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.0
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.6
- 1.4.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.0
- 1.2.15
- 1.2.14
- 1.2.12
- 1.2.11
- 1.2.10
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2
- 1.1
- 1.0
Add this plugin to your build using the plugins DSL:
plugins {
id("edu.wpi.first.NativeUtils") version "2025.7.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("edu.wpi.first.NativeUtils:edu.wpi.first.NativeUtils.gradle.plugin:2025.7.0") }
It can then be applied in the precompiled script plugin:plugins { id("edu.wpi.first.NativeUtils") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("edu.wpi.first.NativeUtils:edu.wpi.first.NativeUtils.gradle.plugin:2025.7.0") } } apply(plugin = "edu.wpi.first.NativeUtils")
- Applying plugins to all subprojects .