Skip to content

Commit

Permalink
Fixes to server-jdk combinations (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
iNikem authored Nov 26, 2020
1 parent 1f603e4 commit cfbc13d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions matrix/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ val buildTestImagesTask = tasks.create("buildTestImages") {
val targets = mapOf(
"jetty" to mapOf(
"9.4" to listOf("8", "11", "15"),
"10.0.0.beta3" to listOf("8", "11", "15"),
"11.0.0.beta3" to listOf("8", "11", "15")
"10.0.0.beta3" to listOf("11", "15"),
"11.0.0.beta3" to listOf("11", "15")
),
"tomcat" to mapOf(
"7" to listOf("8"),
Expand All @@ -28,8 +28,8 @@ val targets = mapOf(
"10" to listOf("8", "11")
),
"payara" to mapOf(
"5.2020.6" to emptyList(),
"5.2020.6-jdk11" to emptyList()
"5.2020.6" to listOf("8"),
"5.2020.6-jdk11" to listOf("11")
),
"wildfly" to mapOf(
"13.0.0.Final" to listOf("8", "11", "15"),
Expand Down

0 comments on commit cfbc13d

Please sign in to comment.