Browse Source

Add toolchain configuration for buildSrc

Issue gh-13811
pull/13880/head
Steve Riesenberg 2 years ago
parent
commit
a28075a6a3
No known key found for this signature in database
GPG Key ID: 5F311AB48A55D521
  1. 6
      buildSrc/build.gradle

6
buildSrc/build.gradle

@ -5,7 +5,11 @@ plugins {
id 'com.apollographql.apollo' version '2.4.5' id 'com.apollographql.apollo' version '2.4.5'
} }
sourceCompatibility = JavaVersion.VERSION_17 java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories { repositories {
gradlePluginPortal() gradlePluginPortal()

Loading…
Cancel
Save