Use WPILib Pair and drop dependency on Apache Commons Pair

This allowed us to drop a few Apache Commons dependencies, which is good for reducing JAR size and the number of things we need to pull in.
This commit is contained in:
Gold856
2025-04-14 18:43:36 -04:00
committed by Matt Morley
parent 8a2c9f2ae0
commit ed7fc6bbcc
14 changed files with 48 additions and 51 deletions

View File

@@ -44,8 +44,6 @@ dependencies {
implementation "commons-io:commons-io:2.11.0"
implementation "commons-cli:commons-cli:1.5.0"
implementation "org.apache.commons:commons-lang3:3.12.0"
implementation "org.apache.commons:commons-collections4:4.4"
implementation "org.apache.commons:commons-exec:1.3"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'