File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
maven-plugin-tools-annotations
maven-script/maven-script-ant
src/main/java/org/apache/maven/script/ant Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 7474 <dependency >
7575 <groupId >org.codehaus.plexus</groupId >
7676 <artifactId >plexus-archiver</artifactId >
77+ <version >4.2.5</version ><!-- Java 7 -->
7778 </dependency >
7879
7980 <dependency >
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ under the License.
6060 <dependency >
6161 <groupId >org.codehaus.plexus</groupId >
6262 <artifactId >plexus-archiver</artifactId >
63+ <version >4.2.5</version ><!-- Java 7 -->
6364 </dependency >
6465 <dependency >
6566 <groupId >org.apache.maven</groupId >
Original file line number Diff line number Diff line change 3434import org .apache .tools .ant .PropertyHelper ;
3535import org .apache .tools .ant .types .Path ;
3636import org .codehaus .plexus .archiver .ArchiverException ;
37- import org .codehaus .plexus .archiver .UnArchiver ;
3837import org .codehaus .plexus .archiver .zip .ZipUnArchiver ;
3938import org .codehaus .plexus .component .MapOrientedComponent ;
4039import org .codehaus .plexus .component .configurator .ComponentConfigurationException ;
@@ -204,7 +203,8 @@ private void unpackFileBasedResources()
204203
205204 try
206205 {
207- UnArchiver ua = new ZipUnArchiver ( pluginJar );
206+ ZipUnArchiver ua = new ZipUnArchiver ( pluginJar );
207+ ua .enableLogging ( logger );
208208
209209 ua .extract ( resourcesPath , outputDirectory );
210210 }
You can’t perform that action at this time.
0 commit comments