From e2d53fa0e9fe786b1bff61f284d5dab52be893da Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 13 Mar 2024 18:38:38 +0000 Subject: [PATCH] Ensure that Maven Plugin uses a consistent Framework dependency version Fixes gh-39927 --- .../spring-boot-tools/spring-boot-maven-plugin/build.gradle | 1 + 1 file changed, 1 insertion(+) 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 61b25f2dc5a..8e07ad2b5ce 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 @@ -34,6 +34,7 @@ dependencies { exclude(group: "javax.enterprise", module: "cdi-api") exclude(group: "javax.inject", module: "javax.inject") } + implementation("org.springframework:spring-core") implementation("org.springframework:spring-context") intTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"))