Search Gradle plugins

org.moeftc.fastcode

Install OpModes without having to restart your FTC (First Tech Challenge) Robot Controller

https://www.moeftc.org/

Sources: https://github.com/greenpizza1203/Fast-Code-Plugin

Version 1.3

Created 28 July 2020.

Install OpModes without having to restart your FTC (First Tech Challenge) Robot Controller

Using the plugins DSL:

plugins {
  id("org.moeftc.fastcode") version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.moeftc:plugin:1.3")
  }
}

apply(plugin = "org.moeftc.fastcode")

Using the plugins DSL:

plugins {
  id "org.moeftc.fastcode" version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.moeftc:plugin:1.3"
  }
}

apply plugin: "org.moeftc.fastcode"

Learn how to apply plugins to subprojects