From 1b6814402cc6d348eb7884f9a5b75fd060a4623e Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Tue, 3 Sep 2019 16:17:06 +0200 Subject: [PATCH] Publish Gradle metadata This commit enables the publishing of Gradle metadata with Spring Framework artifacts. This feature will be enabled by default with Gradle 6.0, so Spring Framework will consistently push this information in the 5.2.x generation. Fixes gh-23503 --- settings.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.gradle b/settings.gradle index 0553a245eb15..ac830cb9fc40 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,6 +5,8 @@ pluginManagement { } } +enableFeaturePreview("GRADLE_METADATA") + include "spring-aop" include "spring-aspects" include "spring-beans"