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
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 74
74
<dependency >
75
75
<groupId >org.codehaus.plexus</groupId >
76
76
<artifactId >plexus-archiver</artifactId >
77
+ <version >4.2.5</version ><!-- Java 7 -->
77
78
</dependency >
78
79
79
80
<dependency >
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ under the License.
60
60
<dependency >
61
61
<groupId >org.codehaus.plexus</groupId >
62
62
<artifactId >plexus-archiver</artifactId >
63
+ <version >4.2.5</version ><!-- Java 7 -->
63
64
</dependency >
64
65
<dependency >
65
66
<groupId >org.apache.maven</groupId >
Original file line number Diff line number Diff line change 34
34
import org .apache .tools .ant .PropertyHelper ;
35
35
import org .apache .tools .ant .types .Path ;
36
36
import org .codehaus .plexus .archiver .ArchiverException ;
37
- import org .codehaus .plexus .archiver .UnArchiver ;
38
37
import org .codehaus .plexus .archiver .zip .ZipUnArchiver ;
39
38
import org .codehaus .plexus .component .MapOrientedComponent ;
40
39
import org .codehaus .plexus .component .configurator .ComponentConfigurationException ;
@@ -204,7 +203,8 @@ private void unpackFileBasedResources()
204
203
205
204
try
206
205
{
207
- UnArchiver ua = new ZipUnArchiver ( pluginJar );
206
+ ZipUnArchiver ua = new ZipUnArchiver ( pluginJar );
207
+ ua .enableLogging ( logger );
208
208
209
209
ua .extract ( resourcesPath , outputDirectory );
210
210
}
You can’t perform that action at this time.
0 commit comments