edu.wpi.first.GradleRIO
                  Owner:
                  
                    
                    WPI Robotics Library
                  
                
Managing FRC projects, the Gradle way (2019+)
https://github.com/wpilibsuite/GradleRIO
Sources: https://github.com/Open-RIO/GradleRIO
Version 2019.1.1-beta-4a
Created 17 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-4a"
}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("edu.wpi.first.GradleRIO:edu.wpi.first.GradleRIO.gradle.plugin:2019.1.1-beta-4a") }It can then be applied in the precompiled script plugin:plugins { id("edu.wpi.first.GradleRIO") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("edu.wpi.first.GradleRIO:edu.wpi.first.GradleRIO.gradle.plugin:2019.1.1-beta-4a") } } apply(plugin = "edu.wpi.first.GradleRIO")
- Applying plugins to all subprojects .