Shuffleboard is organized into three base projects: api
, app
, and plugins
. plugins
has additional
subprojects that the main app depends on to provide data types, widgets, and data sources for basic FRC use.
Shuffleboard is installed by the WPILib Eclipse Plugins. It can be launched from the WPILib menu in Eclipse.
It can also be run manually java -jar c:\users\\<username\>wpilib\tools\Shuffleboard.jar
- JRE 8. Java 8u40 or greater is required. Java 9 is not supported.
To run shuffleboard use the command ./gradlew :app:run
.
To build the APIs and utility classes used in plugin creation, use the command ./gradlew :api:shadowJar
To build the Shuffleboard application, use the command ./gradlew :app:shadowJar
- JDK 8. JDK 8u40 or or greater is required. Java 9 is not supported.