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.2

1.2

Created 27 July 2020.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.moeftc:fastcodeplugin:1.2")
      }
    }
    
    apply(plugin = "org.moeftc.fastcode")
  • Applying plugins to all subprojects .