Search Gradle plugins

io.github.technomancers.gradlerio

Simplifies build and deployment of your java robot code to the RoboRIO without Eclipse.

https://willd.io/

Sources: https://github.com/technomancers/gradle

Version 0.1.3

Created 07 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.gradlerio") version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.github.technomancers:GradleRIO:0.1.3")
  }
}

apply(plugin = "io.github.technomancers.gradlerio")

Using the plugins DSL:

plugins {
  id "io.github.technomancers.gradlerio" version "0.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.github.technomancers:GradleRIO:0.1.3"
  }
}

apply plugin: "io.github.technomancers.gradlerio"

Learn how to apply plugins to subprojects