From b9eebb69e556f69986033c7b41bcd0a91cb30766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Le=C5=9Bkiewicz?= Date: Wed, 28 Sep 2022 12:24:05 +0200 Subject: [PATCH] Update Gradle Shadow Plugin exampe Add `META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports` and `META-INF/spring/org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration.imports` --- docs/src/main/asciidoc/adapters/aws-intro.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/main/asciidoc/adapters/aws-intro.adoc b/docs/src/main/asciidoc/adapters/aws-intro.adoc index e758a74dd..3a1fb2287 100644 --- a/docs/src/main/asciidoc/adapters/aws-intro.adoc +++ b/docs/src/main/asciidoc/adapters/aws-intro.adoc @@ -241,6 +241,8 @@ shadowJar { append 'META-INF/spring.handlers' append 'META-INF/spring.schemas' append 'META-INF/spring.tooling' + append 'META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports' + append 'META-INF/spring/org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration.imports' transform(PropertiesFileTransformer) { paths = ['META-INF/spring.factories'] mergeStrategy = "append"