org.moeftc.hotcode
Owner: Karthikeya Kona
Install OpModes fast, without having to restart your FTC (First Tech Challenge) Robot Controller
Sources: https://github.com/greenpizza1203/Hot-Code-Plugin
Version 2.0 (latest)
2.0
Created 22 January 2021.
Install OpModes fast, without having to restart your FTC (First Tech Challenge) Robot Controller
Using the plugins DSL:
plugins {
id("org.moeftc.hotcode") version "2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.moeftc:plugin:2.0")
}
}
apply(plugin = "org.moeftc.hotcode")
Using the plugins DSL:
plugins {
id "org.moeftc.hotcode" version "2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.moeftc:plugin:2.0"
}
}
apply plugin: "org.moeftc.hotcode"