搜索Gradle插件

io.github.technomancers.gradlerio

所有者: Will Dixon

简化了您的Java机器人代码到RoboRIO的构建和部署,无需Eclipse。

https://willd.io/

来源:https://github.com/technomancers/gradle

版本 0.1.17 (最新)

0.1.17

创建时间 2017年1月15日。

简化了您的Java机器人代码到RoboRIO的构建和部署,无需Eclipse。

使用 插件 DSL

plugins {
  id("io.github.technomancers.gradlerio") version "0.1.17"
}

使用 旧的插件应用程序

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

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

使用 插件 DSL

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

使用 旧的插件应用程序

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

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

了解如何将插件应用于子项目