edu.wpi.first.NativeUtils
Owner:
WPI Robotics Library
This plugin provides native build utilities for FRC projects.
https://github.com/wpilibsuite/native-utils
Version 2024.0.0 (latest)
Created 30 April 2023.
This plugin provides native build utilities for FRC projects.
Using the plugins DSL:
plugins {
id("edu.wpi.first.NativeUtils") version "2024.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("edu.wpi.first:native-utils:2024.0.0")
}
}
apply(plugin = "edu.wpi.first.NativeUtils")
Using the plugins DSL:
plugins {
id "edu.wpi.first.NativeUtils" version "2024.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "edu.wpi.first:native-utils:2024.0.0"
}
}
apply plugin: "edu.wpi.first.NativeUtils"