org.openftc.ftc-resources-plugin
Owner: Noah Andrews
A Gradle plugin to push files to the FIRST folder of all connected Android devices (FTC Teams only)
https://github.com/OpenFTC/external-resources-gradle-plugin
Sources: https://github.com/OpenFTC/external-resources-gradle-plugin
Version 0.9.1 (latest)
0.9.1
Created 02 February 2018.
A Gradle plugin to push files to the FIRST folder of all connected Android devices (FTC Teams only)
Using the plugins DSL:
plugins {
id("org.openftc.ftc-resources-plugin") version "0.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.openftc.ftcresourcesplugin:ftcExternalResources:0.9.1")
}
}
apply(plugin = "org.openftc.ftc-resources-plugin")
Using the plugins DSL:
plugins {
id "org.openftc.ftc-resources-plugin" version "0.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.openftc.ftcresourcesplugin:ftcExternalResources:0.9.1"
}
}
apply plugin: "org.openftc.ftc-resources-plugin"