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)
Created 27 August 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.8"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.moeftc.fastcode:org.moeftc.fastcode.gradle.plugin:1.8") }
It can then be applied in the precompiled script plugin:plugins { id("org.moeftc.fastcode") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.moeftc.fastcode:org.moeftc.fastcode.gradle.plugin:1.8") } } apply(plugin = "org.moeftc.fastcode")
- Applying plugins to all subprojects .