A customized library for Team 2170 containing much simplification for our year-to-year robot code. Allows the team to get up and running quickly at the beginning of the year.
Step 0. This is done by default for robot projects, but if your doing a local project you must remember to include this at the top
plugins {
id "java"
// You can use different versions of GradleRIO between your robot
// code and GuardianLib as long as the updates don't break anything
id "edu.wpi.first.GradleRIO" version "2025.3.2"
}
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
// check tag above for most recent version
implementation 'com.github.Team2170:GuardianLib:VERSION'
}
./gradlew build
import com.GalvanizedGuardians.GuardianLib.*;
Try closing and reopening your IDE.