Skip to content

Commit 751bc3a

Browse files
Merge pull request #13 from gendercomics/deps/phase3-java17
deps(phase3): switch compile target to Java 17
2 parents b5bc454 + 69662b4 commit 751bc3a

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ plugins {
88

99
group = 'net.gendercomics.api'
1010
version = '2.3.0'
11-
sourceCompatibility = '11'
11+
12+
java {
13+
toolchain {
14+
languageVersion = JavaLanguageVersion.of(17)
15+
}
16+
}
1217

1318
ext {
1419
junitVersion = '5.11.4'

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ pluginManagement {
66

77
plugins {
88
id 'com.gradle.enterprise' version '3.16.2'
9+
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
910
}
1011

1112
gradleEnterprise {

0 commit comments

Comments
 (0)