mirror of https://github.com/apache/archiva.git
Update wagon
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@481234 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e318ff5750
commit
70d0d075a2
|
@ -31,6 +31,7 @@ import org.codehaus.plexus.util.FileUtils;
|
|||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* A dummy wagon implementation
|
||||
|
@ -71,6 +72,18 @@ public class WagonDelegate
|
|||
delegate.putDirectory( sourceDirectory, destinationDirectory );
|
||||
}
|
||||
|
||||
public boolean resourceExists( String resourceName )
|
||||
throws TransferFailedException, AuthorizationException
|
||||
{
|
||||
return delegate.resourceExists( resourceName );
|
||||
}
|
||||
|
||||
public List getFileList( String destinationDirectory )
|
||||
throws TransferFailedException, ResourceDoesNotExistException, AuthorizationException
|
||||
{
|
||||
return delegate.getFileList( destinationDirectory );
|
||||
}
|
||||
|
||||
public boolean supportsDirectoryCopy()
|
||||
{
|
||||
return delegate.supportsDirectoryCopy();
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -498,7 +498,7 @@
|
|||
</pluginRepositories>
|
||||
<properties>
|
||||
<maven.version>2.0.4</maven.version>
|
||||
<wagon.version>1.0-beta-1</wagon.version>
|
||||
<wagon.version>1.0-beta-2-SNAPSHOT</wagon.version>
|
||||
<plexus-security.version>1.0-alpha-6-SNAPSHOT</plexus-security.version>
|
||||
</properties>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue