From f45db24acc9b29b031bf0c7ac2a6a41009383d7c Mon Sep 17 00:00:00 2001 From: Silvio Giebl Date: Mon, 26 Feb 2024 09:13:40 +0100 Subject: [PATCH] Adapt TestProject to new constraint syntax --- .../kotlin/io/github/sgtsilvio/gradle/oci/TestProject.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/functionalTest/kotlin/io/github/sgtsilvio/gradle/oci/TestProject.kt b/src/functionalTest/kotlin/io/github/sgtsilvio/gradle/oci/TestProject.kt index 51a6cc64..93479bbc 100644 --- a/src/functionalTest/kotlin/io/github/sgtsilvio/gradle/oci/TestProject.kt +++ b/src/functionalTest/kotlin/io/github/sgtsilvio/gradle/oci/TestProject.kt @@ -67,7 +67,7 @@ internal class TestProject(projectDir: File) { imageDependencies.forTest(tasks.test) { add(project) add(project).tag("latest") - constraint("library:eclipse-temurin:20.0.1_9-jre-jammy") + add(constraint("library:eclipse-temurin:20.0.1_9-jre-jammy")) add("hivemq:hivemq4:4.16.0") } }