Skip to content

Commit

Permalink
Merge branch 'wpilibsuite:2025' into wpilib-version-var
Browse files Browse the repository at this point in the history
  • Loading branch information
thenetworkgrinch authored Dec 3, 2024
2 parents e8e743e + 3bfbd91 commit 3b39c2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'java'
id 'google-test'
id 'edu.wpi.first.wpilib.repositories.WPILibRepositoriesPlugin' version '2020.2'
id 'edu.wpi.first.NativeUtils' version '2025.3.0'
id 'edu.wpi.first.NativeUtils' version '2025.6.0'
id 'edu.wpi.first.GradleJni' version '1.1.0'
id 'edu.wpi.first.GradleVsCode' version '2.1.0'
}
Expand All @@ -20,6 +20,11 @@ if (project.hasProperty('releaseMode')) {
wpilibRepositories.addAllDevelopmentRepositories(project)
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

// Apply C++ configuration
apply from: 'config.gradle'

Expand Down Expand Up @@ -129,5 +134,5 @@ model {
apply from: 'publish.gradle'

wrapper {
gradleVersion '8.10.2'
gradleVersion '8.11'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 3b39c2d

Please sign in to comment.