edu.wpi.first.DeployUtils
Owner: WPI Robotics Library
Additions to the model-based DSL for deploying Java and Native projects to remote targets
https://github.com/wpilibsuite/deploy-utils
Sources: https://github.com/wpilibsuite/deploy-utils
Version 2025.0.0
2025.0.0
Created 20 August 2024.
Additions to the model-based DSL for deploying Java and Native projects to remote targets
Using the plugins DSL:
plugins {
id("edu.wpi.first.DeployUtils") version "2025.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("edu.wpi.first:DeployUtils:2025.0.0")
}
}
apply(plugin = "edu.wpi.first.DeployUtils")
Using the plugins DSL:
plugins {
id "edu.wpi.first.DeployUtils" version "2025.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "edu.wpi.first:DeployUtils:2025.0.0"
}
}
apply plugin: "edu.wpi.first.DeployUtils"