Compare commits

...

2 Commits

Author SHA1 Message Date
Matt
be5f0880c8 Update WPILib to 2022.1.1-beta-3-1-g4ba80a3 (#337)
This fixes raspberry pi crashes
2021-11-28 07:34:13 -06:00
Banks T
a02cd4a50e Explicitly specify JDK11 for photon-targeting (#334) 2021-11-27 00:22:51 -05:00
2 changed files with 4 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ allprojects {
apply from: "versioningHelper.gradle"
ext {
wpilibVersion = "2022.1.1-beta-2"
wpilibVersion = "2022.1.1-beta-3-1-g4ba80a3"
opencvVersion = "4.5.2-1"
joglVersion = "2.4.0-rc-20200307"
pubVersion = versionString

View File

@@ -1,5 +1,8 @@
apply plugin: "java"
sourceCompatibility = 11
targetCompatibility = 11
dependencies {
implementation "edu.wpi.first.wpimath:wpimath-java:$wpilibVersion"
}