Bump opencv to fix cross-compile rpath (#992)

This commit is contained in:
Matt
2023-11-01 19:16:41 -04:00
committed by GitHub
parent 6666b22fc1
commit 12774591a4

View File

@@ -21,7 +21,7 @@ apply from: "versioningHelper.gradle"
ext {
wpilibVersion = "2024.1.1-beta-2"
openCVversion = "4.8.0-1"
openCVversion = "4.8.0-2"
joglVersion = "2.4.0-rc-20200307"
javalinVersion = "5.6.2"
frcYear = "2024"
@@ -41,6 +41,11 @@ ext {
wpilibTools.deps.wpilibVersion = wpilibVersion
// Tell gradlerio what version of things to use (that we care about)
// See: https://github.com/wpilibsuite/GradleRIO/blob/main/src/main/java/edu/wpi/first/gradlerio/wpi/WPIVersionsExtension.java
wpi.getVersions().getOpencvVersion().convention(openCVversion);
wpi.getVersions().getWpilibVersion().convention(wpilibVersion);
spotless {
java {
target fileTree('.') {