From f015d50d7e7013af2ef46f97fdb6ec4b99c2e0c4 Mon Sep 17 00:00:00 2001 From: Patrick Hammer <patham9@gmail.com> Date: Sat, 11 Aug 2018 13:11:36 -0400 Subject: [PATCH] Update: pom: Assembly plugin not needed. --- Assembly.xml | 45 --------------------------------------------- pom.xml | 11 ----------- 2 files changed, 56 deletions(-) delete mode 100644 Assembly.xml diff --git a/Assembly.xml b/Assembly.xml deleted file mode 100644 index 1350ee8e4..000000000 --- a/Assembly.xml +++ /dev/null @@ -1,45 +0,0 @@ -<assembly> - <id>bin</id> - <!-- Specifies that our binary distribution is a zip package --> - <formats> - <format>zip</format> - </formats> - - <!-- Adds the dependencies of our application to the lib directory --> - <dependencySets> - <dependencySet> - <!-- - Project artifact is not copied under library directory since - it is added to the root directory of the zip package. - --> - <useProjectArtifact>false</useProjectArtifact> - <outputDirectory>lib</outputDirectory> - <unpack>false</unpack> - </dependencySet> - </dependencySets> - - <fileSets> - <!-- - Adds startup scripts to the root directory of zip package. The startup - scripts are copied from the src/main/scripts directory. - --> - <fileSet> - <directory>${project.build.scriptSourceDirectory}</directory> - <outputDirectory></outputDirectory> - <includes> - <include>startup.*</include> - </includes> - </fileSet> - <!-- - Adds the jar file of our example application to the root directory - of the created zip package. - --> - <fileSet> - <directory>${project.build.directory}</directory> - <outputDirectory></outputDirectory> - <includes> - <include>*.jar</include> - </includes> - </fileSet> - </fileSets> -</assembly> diff --git a/pom.xml b/pom.xml index 69b555b95..ac5160890 100644 --- a/pom.xml +++ b/pom.xml @@ -246,17 +246,6 @@ </archive> </configuration> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-assembly-plugin</artifactId> - <version>2.5.1</version> - <configuration> - <!-- Configures the used assembly descriptor --> - <descriptors> - <descriptor>assembly.xml</descriptor> - </descriptors> - </configuration> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> -- GitLab