org.moeftc.hotcode
Owner:
Karthikeya Kona
Install OpModes fast, without having to restart your FTC (First Tech Challenge) Robot Controller
Version 2.0 (latest)
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"