Search Gradle plugins

Version 2019.1.1-beta-3-pre5

2019.1.1-beta-3-pre5

Created 05 December 2018.

Managing FRC projects, the Gradle way (2019+)

Add this plugin to your build using the plugins DSL:

plugins {
  id("edu.wpi.first.GradleRIO") version "2019.1.1-beta-3-pre5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.edu.wpi.first:GradleRIO:2019.1.1-beta-3-pre5")
      }
    }
    
    apply(plugin = "edu.wpi.first.GradleRIO")
  • Applying plugins to all subprojects .