From 21a10d45613818cd8d6279f18d45b3b3ad671eff 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 Both spring-boot-configuration-metadata and spring-boot-properties-migrator missed the deployed plugin and were thus not released properly. Closes gh-20050 --- .../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 64aec7ee879d..002e3202d5d3 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 de7906bc0240..92531fc616ae 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" }