Skip to content

Commit

Permalink
Update wpilib and set version (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcm001 committed May 29, 2024
1 parent 6934abb commit 0db16ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ ext {
pubVersion = versionString
isDev = pubVersion.startsWith("dev")

wpilibVersion = "2024.2.1"
wpilibVersion = "2024.3.2"
wpimathVersion = wpilibVersion
openCVversion = "4.8.0-2"
}

wpi.getVersions().getOpencvVersion().convention(openCVversion);
wpi.getVersions().getWpilibVersion().convention(wpilibVersion);
wpi.getVersions().getWpimathVersion().convention(wpimathVersion);
wpilibTools.deps.wpilibVersion = wpilibVersion

java {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down
4 changes: 2 additions & 2 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ build.dependsOn nativeLibraryJar
publishing {
repositories {
maven {
url ('https://maven.photonvision.org/repository/' + (isDev ? 'snapshots' : 'internal'))
url ('https://maven.photonvision.org/' + (isDev ? 'snapshots' : 'releases'))
credentials {
username 'ghactions'
password 'kCPJugusxV5i8F'
password System.getenv("ARTIFACTORY_API_KEY")
}
}
}
Expand Down

0 comments on commit 0db16ac

Please sign in to comment.