From c9ce6e3060de7ead1e8193401c8f1ffd3e8a4114 Mon Sep 17 00:00:00 2001 From: Wyatt Nielsen <wyatt.nielsen@parivedasolutions.com> Date: Mon, 2 Dec 2019 18:44:54 -0600 Subject: [PATCH] Add plugin to package dependencies --- .../indexer-aws/indexer-queue-aws/pom.xml | 37 ++++++++++--------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/provider/indexer-aws/indexer-queue-aws/pom.xml b/provider/indexer-aws/indexer-queue-aws/pom.xml index c160978f3..6f4a6c28c 100644 --- a/provider/indexer-aws/indexer-queue-aws/pom.xml +++ b/provider/indexer-aws/indexer-queue-aws/pom.xml @@ -36,23 +36,26 @@ </archive> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-dependency-plugin</artifactId> - <version>2.8</version> - <executions> - <execution> - <id>copy-dependencies</id> - <phase>package</phase> - <goals> - <goal>copy-dependencies</goal> - </goals> - <configuration> - <outputDirectory>${project.build.directory}/lib</outputDirectory> - </configuration> - </execution> - </executions> - </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>2.4.1</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <transformers> + <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> + <mainClass>org.sonatype.haven.HavenCli</mainClass> + </transformer> + </transformers> + </configuration> + </execution> + </executions> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> -- GitLab