Compile with Java 17 compatibility (#43)

This commit is contained in:
Ryan Blue 2024-12-02 21:49:32 -05:00 committed by GitHub
parent 2075a27ba3
commit 74e7147c31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,6 +17,11 @@ if (project.hasProperty('releaseMode')) {
wpilibRepositories.addAllDevelopmentRepositories(project)
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
// Apply C++ configuration
apply from: 'config.gradle'