Skip to content

Commit d09d9ff

Browse files
committed
Updated to next -io
1 parent 44f77c8 commit d09d9ff

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>org.codehaus.plexus</groupId>
5757
<artifactId>plexus-io</artifactId>
58-
<version>2.1.4</version>
58+
<version>2.1.5-SNAPSHOT</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.apache.commons</groupId>

src/main/java/org/codehaus/plexus/archiver/AbstractArchiver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ public void addFileSet( final FileSet fileSet )
295295

296296
// The PlexusIoFileResourceCollection contains platform-specific File.separatorChar which
297297
// is an interesting cause of grief, see PLXCOMP-192
298-
final PlexusIoFileResourceCollection collection = new PlexusIoFileResourceCollection( getLogger() );
298+
final PlexusIoFileResourceCollection collection = new PlexusIoFileResourceCollection( );
299299
collection.setFollowingSymLinks( !isSymlinkSupported() );
300300

301301
collection.setIncludes( fileSet.getIncludes() );

src/main/java/org/codehaus/plexus/archiver/Archiver.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ void createArchive()
7575
* Obsolete, use {@link #addFileSet(FileSet)}.
7676
* You can use "inline" of this method in your
7777
* IDE to get the proper implementation for this release.
78-
* @deprecated Will go away in next major version
7978
*/
8079
@Deprecated
8180
void addDirectory( File directory )
@@ -85,7 +84,6 @@ void addDirectory( File directory )
8584
* Obsolete, use {@link #addFileSet(FileSet)}.
8685
* You can use "inline" of this method in your
8786
* IDE to get the proper implementation for this release.
88-
* @deprecated Will go away in next major version
8987
*/
9088
@Deprecated
9189
void addDirectory( File directory, String prefix )
@@ -94,7 +92,6 @@ void addDirectory( File directory, String prefix )
9492
/**
9593
* Obsolete, use {@link #addFileSet(FileSet)}.You can use "inline" of this method in your
9694
* IDE to get the proper implementation for this release.
97-
* @deprecated Will go away in next major version
9895
*/
9996
@Deprecated
10097
void addDirectory( File directory, String[] includes, String[] excludes )
@@ -104,7 +101,6 @@ void addDirectory( File directory, String[] includes, String[] excludes )
104101
* Obsolete, use {@link #addFileSet(FileSet)}.
105102
* You can use "inline" of this method in your
106103
* IDE to get the proper implementation for this release.
107-
* @deprecated Will go away in next major version
108104
*/
109105
@Deprecated
110106
void addDirectory( File directory, String prefix, String[] includes, String[] excludes )

0 commit comments

Comments
 (0)