From 2ed72c6e4d4aea27f7c84354d5fd397e8e06fe55 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 28 Jun 2024 11:38:53 +0100 Subject: [PATCH] Correct syntax for plexus-utils exclusion See 07442f836600fc346db49b8c0640f3977be18dfd See gh-41248 --- .../spring-boot-tools/spring-boot-maven-plugin/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/build.gradle b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/build.gradle index ee2d3d9d1a2..b554caf6445 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/build.gradle +++ b/spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/build.gradle @@ -44,7 +44,7 @@ dependencies { exclude(group: "javax.inject", module: "javax.inject") } implementation("org.sonatype.plexus:plexus-build-api") { - exclude(group: "org.codehaus.plexus:plexus-utils") + exclude(group: "org.codehaus.plexus", module: "plexus-utils") } implementation("org.springframework:spring-core") implementation("org.springframework:spring-context")