Skip to content

Commit a8f2c9f

Browse files
authored
Bump target JDK version to 11 (#190)
1 parent 6de198d commit a8f2c9f

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ subprojects {
4444
mitLicense()
4545

4646
javaVersions {
47-
testWith(8, 11, 17)
47+
target(11)
48+
testWith(11, 17, 21)
4849
}
4950

5051
configurePublications {

subprojects/downloader-apache-http/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
alias(libs.plugins.indra.publishing)
33
}
44

5-
description = "An implementation of the resolver Downloader based on the JDK 11 HTTP Client"
5+
description = "An implementation of the resolver Downloader based on the Apache HTTP Client"
66

77
dependencies {
88
api(project(":vanillagradle-resolver-core"))

subprojects/downloader-jdk-http/build.gradle.kts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@ plugins {
22
alias(libs.plugins.indra.publishing)
33
}
44

5-
description = "An implementation of the resolver Downloader based on the JDK 11 HTTP Client"
6-
7-
indra {
8-
javaVersions {
9-
target(11)
10-
}
11-
}
5+
description = "An implementation of the resolver Downloader based on the JDK HTTP Client"
126

137
dependencies {
148
api(project(":vanillagradle-resolver-core"))

0 commit comments

Comments
 (0)