Search Gradle plugins

org.moeftc.hotcode

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

https://www.moeftc.org/

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

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"

Learn how to apply plugins to subprojects