Removed an old maven assembly plugin workaround for buggy tar packaging

This commit is contained in:
Vhati 2017-11-25 19:54:57 -05:00
parent eacd79b3cc
commit 96962cd96f

16
pom.xml
View file

@ -65,21 +65,11 @@
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<!-- Assembly 2.4 needed its own dependencies pinned to get around a tar bug. -->
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version> <!-- Plexus Archiver had bad tar support before. --> <version>2.4.1</version> <!-- Plexus Archiver had bad tar support before. -->
<dependencies>
<dependency> <!-- Newer Archiver than required fixing tar bugs. -->
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>2.4.3</version>
</dependency>
<dependency> <!-- Newer IO than Archiver required fixing another bug. -->
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-io</artifactId>
<version>2.0.8</version>
</dependency>
</dependencies>
<executions> <executions>
<execution> <!-- Build jar. --> <execution> <!-- Build jar. -->
<id>jar-with-dependencies</id> <id>jar-with-dependencies</id>