Skip to content

Commit

Permalink
[MPLUGIN-387] Bump plexus-archiver to 4.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Jan 10, 2022
1 parent f646104 commit 9ff352c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions maven-plugin-tools-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>4.2.5</version><!-- Java 7 -->
</dependency>

<dependency>
Expand Down
1 change: 1 addition & 0 deletions maven-script/maven-script-ant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ under the License.
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>4.2.5</version><!-- Java 7 -->
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
import org.apache.tools.ant.PropertyHelper;
import org.apache.tools.ant.types.Path;
import org.codehaus.plexus.archiver.ArchiverException;
import org.codehaus.plexus.archiver.UnArchiver;
import org.codehaus.plexus.archiver.zip.ZipUnArchiver;
import org.codehaus.plexus.component.MapOrientedComponent;
import org.codehaus.plexus.component.configurator.ComponentConfigurationException;
Expand Down Expand Up @@ -204,7 +203,8 @@ private void unpackFileBasedResources()

try
{
UnArchiver ua = new ZipUnArchiver( pluginJar );
ZipUnArchiver ua = new ZipUnArchiver( pluginJar );
ua.enableLogging( logger );

ua.extract( resourcesPath, outputDirectory );
}
Expand Down

0 comments on commit 9ff352c

Please sign in to comment.