jaci.gradle.EmbeddedTools
Owner: WPI Robotics Library
Additions to the model-based DSL for deploying Java and Native projects to remote targets
https://github.com/JacisNonsense/EmbeddedTools
Sources: https://github.com/JacisNonsense/DeployTools
Version 2017.10.20b
2017.10.20b
Created 19 October 2017.
Additions to the model-based DSL for deploying Java and Native projects to remote targets
Using the plugins DSL:
plugins {
id("jaci.gradle.EmbeddedTools") version "2017.10.20b"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.jaci.gradle:DeployTools:2017.10.20b")
}
}
apply(plugin = "jaci.gradle.EmbeddedTools")
Using the plugins DSL:
plugins {
id "jaci.gradle.EmbeddedTools" version "2017.10.20b"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.jaci.gradle:DeployTools:2017.10.20b"
}
}
apply plugin: "jaci.gradle.EmbeddedTools"