io.github.technomancers.gradleio
Owner:
Will Dixon
Simplifies build and deployment of your java robot code to the RoboRIO without Eclipse.
Version 0.1.0 (latest)
Created 05 January 2017.
Simplifies build and deployment of your java robot code to the RoboRIO without Eclipse.
Using the plugins DSL:
plugins {
id("io.github.technomancers.gradleio") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.technomancers:GradleRIO:0.1.0")
}
}
apply(plugin = "io.github.technomancers.gradleio")
Using the plugins DSL:
plugins {
id "io.github.technomancers.gradleio" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.technomancers:GradleRIO:0.1.0"
}
}
apply plugin: "io.github.technomancers.gradleio"