From 268f696d19b3f873c095d4b07daa9d8c7569cce5 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Thu, 6 Feb 2020 16:04:07 +0100 Subject: [PATCH] Add missing deployed plugin to modules This commit registers 'org.springframework.boot.deployed' to spring-boot-configuration-metadata and spring-boot-properties-migrator to make sure they are deployed as expected. See gh-20051 --- .../spring-boot-properties-migrator/build.gradle | 2 +- .../spring-boot-configuration-metadata/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-properties-migrator/build.gradle b/spring-boot-project/spring-boot-properties-migrator/build.gradle index 64aec7ee879..002e3202d5d 100644 --- a/spring-boot-project/spring-boot-properties-migrator/build.gradle +++ b/spring-boot-project/spring-boot-properties-migrator/build.gradle @@ -1,7 +1,7 @@ plugins { id "java-library" - id "maven-publish" id "org.springframework.boot.conventions" + id "org.springframework.boot.deployed" id "org.springframework.boot.internal-dependency-management" } diff --git a/spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/build.gradle b/spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/build.gradle index de7906bc024..92531fc616a 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/build.gradle +++ b/spring-boot-project/spring-boot-tools/spring-boot-configuration-metadata/build.gradle @@ -1,7 +1,7 @@ plugins { id "java-library" - id "maven-publish" id "org.springframework.boot.conventions" + id "org.springframework.boot.deployed" id "org.springframework.boot.internal-dependency-management" }