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 2020.12.23 (latest)
2020.12.23
Created 24 December 2020.
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 "2020.12.23"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("jaci.gradle:EmbeddedTools:2020.12.23")
}
}
apply(plugin = "jaci.gradle.EmbeddedTools")
Using the plugins DSL:
plugins {
id "jaci.gradle.EmbeddedTools" version "2020.12.23"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "jaci.gradle:EmbeddedTools:2020.12.23"
}
}
apply plugin: "jaci.gradle.EmbeddedTools"