Search Gradle plugins

edu.wpi.first.DeployUtils

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.2.0 (latest)

2025.2.0

Created 15 October 2024.

Additions to the model-based DSL for deploying Java and Native projects to remote targets

Add this plugin to your build using the plugins DSL:

plugins {
  id("edu.wpi.first.DeployUtils") version "2025.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("edu.wpi.first:DeployUtils:2025.2.0")
      }
    }
    
    apply(plugin = "edu.wpi.first.DeployUtils")
  • Applying plugins to all subprojects .