diff --git a/open-metadata-implementation/server-chassis/server-chassis-spring/build.gradle b/open-metadata-implementation/server-chassis/server-chassis-spring/build.gradle index e085e0653b6..e3cf847e7dd 100644 --- a/open-metadata-implementation/server-chassis/server-chassis-spring/build.gradle +++ b/open-metadata-implementation/server-chassis/server-chassis-spring/build.gradle @@ -112,12 +112,9 @@ test { } // See https://stackoverflow.com/questions/61197984/bootjar-mavenjar-artifact-wasnt-produced-by-this-build -// Remove the regular (plain) jar & replace with the SpringBoot version +// Ensure the SpringBoot jar is included -- we leave the 'plain' jar in-situ too, for composing alternate chassis configurations { [apiElements, runtimeElements].each { - it.outgoing.artifacts.removeIf { - it.buildDependencies.getDependencies(null).contains(jar) - } it.outgoing.artifact(bootJar) } }