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)
Created 02 February 2018.
A Gradle plugin to push files to the FIRST folder of all connected Android devices (FTC Teams only)
Add this plugin to your build using the plugins DSL:
plugins {
id("org.openftc.ftc-resources-plugin") version "0.9.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.openftc.ftc-resources-plugin:org.openftc.ftc-resources-plugin.gradle.plugin:0.9.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.openftc.ftc-resources-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.openftc.ftc-resources-plugin:org.openftc.ftc-resources-plugin.gradle.plugin:0.9.1") } } apply(plugin = "org.openftc.ftc-resources-plugin")
- Applying plugins to all subprojects .