Search Gradle plugins

Version 0.9.0

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.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.openftc.ftcresourcesplugin:ftcExternalResources:0.9.0")
  }
}

apply(plugin = "org.openftc.ftc-resources-plugin")

Using the plugins DSL:

plugins {
  id "org.openftc.ftc-resources-plugin" version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.openftc.ftcresourcesplugin:ftcExternalResources:0.9.0"
  }
}

apply plugin: "org.openftc.ftc-resources-plugin"

Learn how to apply plugins to subprojects