mirror of https://github.com/apache/maven.git
o flipping back to 1.0-beta-1 of wagon for the time being
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@485721 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c158bca137
commit
f9d660817e
|
@ -4,7 +4,7 @@ plexus-archiver.version=1.0-alpha-8-SNAPSHOT
|
|||
plexus-utils.version=1.2
|
||||
plexus-interactivity-api.version=1.0-alpha-4
|
||||
commons-cli.version=1.0
|
||||
wagon.version=1.0-beta-2-SNAPSHOT
|
||||
wagon.version=1.0-beta-1
|
||||
doxia.version=1.0-alpha-9-SNAPSHOT
|
||||
modello.version=1.0-alpha-13
|
||||
junit.version=3.8.1
|
||||
|
|
|
@ -33,6 +33,8 @@ public class BatchModeDownloadMonitor
|
|||
|
||||
String url = transferEvent.getWagon().getRepository().getUrl();
|
||||
|
||||
System.out.println( "url = " + url );
|
||||
|
||||
// TODO: can't use getLogger() because this isn't currently instantiated as a component
|
||||
System.out.println( message + ": " + url + "/" + transferEvent.getResource().getName() );
|
||||
}
|
||||
|
|
|
@ -48,6 +48,7 @@ public class MavenCli
|
|||
ClassWorld classWorld = new ClassWorld( "plexus.core", Thread.currentThread().getContextClassLoader() );
|
||||
|
||||
int result = main( args, classWorld );
|
||||
|
||||
System.exit(result);
|
||||
}
|
||||
|
||||
|
@ -150,7 +151,7 @@ public class MavenCli
|
|||
interactive = false;
|
||||
}
|
||||
|
||||
boolean usePluginRegistry = true;
|
||||
boolean usePluginRegistry = false;
|
||||
|
||||
if ( commandLine.hasOption( CLIManager.SUPPRESS_PLUGIN_REGISTRY ) )
|
||||
{
|
||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.maven.wagon.resource.Resource;
|
|||
public abstract class AbstractConsoleDownloadMonitorTest
|
||||
extends TestCase
|
||||
{
|
||||
|
||||
private AbstractConsoleDownloadMonitor monitor;
|
||||
|
||||
public AbstractConsoleDownloadMonitorTest()
|
||||
|
|
Loading…
Reference in New Issue