org.moeftc.fastcode
Owner: Karthikeya Kona
Install OpModes without having to restart your FTC (First Tech Challenge) Robot Controller
Sources: https://github.com/greenpizza1203/Fast-Code-Plugin
Version 1.8 (latest)
1.8
Created 27 August 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.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.moeftc:plugin:1.8")
}
}
apply(plugin = "org.moeftc.fastcode")
Using the plugins DSL:
plugins {
id "org.moeftc.fastcode" version "1.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.moeftc:plugin:1.8"
}
}
apply plugin: "org.moeftc.fastcode"