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 2022.1.0

Created 13 October 2021.

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 "2022.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("edu.wpi.first:DeployUtils:2022.1.0")
  }
}

apply(plugin = "edu.wpi.first.DeployUtils")

Using the plugins DSL:

plugins {
  id "edu.wpi.first.DeployUtils" version "2022.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "edu.wpi.first:DeployUtils:2022.1.0"
  }
}

apply plugin: "edu.wpi.first.DeployUtils"

Learn how to apply plugins to subprojects