Search Gradle plugins

Version 2021.1.1-beta-3

2021.1.1-beta-3

Created 05 December 2020.

Managing FRC projects, the Gradle way (2019+)

Add this plugin to your build using the plugins DSL:

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

See also:

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