Ingredients for a Boba Bot.
Javadocs can be found here
Gradle is the current build system for WPILib robot projects.
To install, add the following to the root build.gradle
repositories {
maven { url 'https://jitpack.io' }
}
Then, add Tapioca as a dependency
dependencies {
implementation 'org.bobabots253:Tapioca:2021.1.1' // Replace tag with the latest release if needed
// Alternatively, for the latest version on github
implementation 'org.bobabots253:Tapioca:master-SNAPSHOT'
}
Before you get started with contributing to Tapioca, make sure you read CONTRIBUTING.md.
Now you can get started:
# clone the repository
git clone https://github.com/bobabots253/Tapioca.git
# cd into Tapioca
cd Tapioca
# Run tests and build:
./gradlew build