Skip to content

Commit 80bd5cb

Browse files
committed
Fixes issue # 168 in metafacture-core
Updated the maven-assembly-plugin to stop it from creating invalid tar files which lead 7zip to output warning messsages.
1 parent 34b1a5c commit 80bd5cb

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

pom.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,23 @@
159159

160160
<plugin>
161161
<artifactId>maven-assembly-plugin</artifactId>
162-
<version>2.2.1</version>
162+
<version>2.4</version>
163+
<dependencies>
164+
<!-- Pin the versions of plexus-archiver and plexus-io as
165+
there are apparently two bugs in the versions on which
166+
maven-assembly-plugin depends on by default. See
167+
http://www.misanthropicgeek.net/?p=1303 for details. -->
168+
<dependency>
169+
<groupId>org.codehaus.plexus</groupId>
170+
<artifactId>plexus-archiver</artifactId>
171+
<version>2.4.3</version>
172+
</dependency>
173+
<dependency>
174+
<groupId>org.codehaus.plexus</groupId>
175+
<artifactId>plexus-io</artifactId>
176+
<version>2.0.8</version>
177+
</dependency>
178+
</dependencies>
163179
<executions>
164180
<execution>
165181
<id>create-distribution-package</id>

0 commit comments

Comments
 (0)