Team 581's 2026 robot code monorepo.
This repository is organized as a Gradle monorepo with the following projects:
shared/- Shared utility libraryturret-bot/- Turret bot code
# Build all projects
./gradlew build
# Build specific project
./gradlew comp-bot:build./gradlew comp-bot:deploy# Run simulator for specific project
./gradlew comp-bot:simulateJava# Run all tests
./gradlew test
# Run tests for specific project
./gradlew comp-bot:test# Check formatting
./gradlew spotlessCheck
# Apply formatting
./gradlew spotlessApply