Search Gradle plugins

Version 2019.1.1-beta-4-pre4

2019.1.1-beta-4-pre4

Created 15 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-4-pre4"
}

See also:

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