This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/juneau.git
commit 7930bebce5701a42744472b8d6a1650b79ea2afa Author: Gary Gregory <[email protected]> AuthorDate: Mon Dec 18 14:18:31 2023 -0500 Manage version of maven-shade-plugin --- juneau-all/pom.xml | 1 - juneau-examples/juneau-examples-rest-jetty/build-overlay/pom.xml | 1 - pom.xml | 7 +++++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/juneau-all/pom.xml b/juneau-all/pom.xml index f2526b8f6..33ea10291 100644 --- a/juneau-all/pom.xml +++ b/juneau-all/pom.xml @@ -67,7 +67,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> - <!--version>2.4.3</version--> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <artifactSet> diff --git a/juneau-examples/juneau-examples-rest-jetty/build-overlay/pom.xml b/juneau-examples/juneau-examples-rest-jetty/build-overlay/pom.xml index bdad1dd99..b6e60804f 100644 --- a/juneau-examples/juneau-examples-rest-jetty/build-overlay/pom.xml +++ b/juneau-examples/juneau-examples-rest-jetty/build-overlay/pom.xml @@ -146,7 +146,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> - <version>3.0.0</version> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> </configuration> diff --git a/pom.xml b/pom.xml index 1d61e939d..2fc8f7c56 100644 --- a/pom.xml +++ b/pom.xml @@ -316,6 +316,13 @@ <version>${jacoco.plugin.version}</version> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <!-- Same version as org.apache:apache:30 for now --> + <version>3.4.1</version> + </plugin> + </plugins> </pluginManagement> </build>
