Search Gradle plugins

Version 2019.2.1

2019.2.1

Created 15 January 2019.

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.2.1"
}

See also:

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