Skip to content

Commit 0db16ac

Browse files
committed
Update wpilib and set version (#12)
1 parent 6934abb commit 0db16ac

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ ext {
2323
pubVersion = versionString
2424
isDev = pubVersion.startsWith("dev")
2525

26-
wpilibVersion = "2024.2.1"
26+
wpilibVersion = "2024.3.2"
2727
wpimathVersion = wpilibVersion
2828
openCVversion = "4.8.0-2"
2929
}
3030

3131
wpi.getVersions().getOpencvVersion().convention(openCVversion);
3232
wpi.getVersions().getWpilibVersion().convention(wpilibVersion);
3333
wpi.getVersions().getWpimathVersion().convention(wpimathVersion);
34+
wpilibTools.deps.wpilibVersion = wpilibVersion
3435

3536
java {
3637
sourceCompatibility = JavaVersion.VERSION_11

publish.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ build.dependsOn nativeLibraryJar
1616
publishing {
1717
repositories {
1818
maven {
19-
url ('https://maven.photonvision.org/repository/' + (isDev ? 'snapshots' : 'internal'))
19+
url ('https://maven.photonvision.org/' + (isDev ? 'snapshots' : 'releases'))
2020
credentials {
2121
username 'ghactions'
22-
password 'kCPJugusxV5i8F'
22+
password System.getenv("ARTIFACTORY_API_KEY")
2323
}
2424
}
2525
}

0 commit comments

Comments
 (0)