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-utils.version=1.2
|
||||||
plexus-interactivity-api.version=1.0-alpha-4
|
plexus-interactivity-api.version=1.0-alpha-4
|
||||||
commons-cli.version=1.0
|
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
|
doxia.version=1.0-alpha-9-SNAPSHOT
|
||||||
modello.version=1.0-alpha-13
|
modello.version=1.0-alpha-13
|
||||||
junit.version=3.8.1
|
junit.version=3.8.1
|
||||||
|
|
|
@ -33,6 +33,8 @@ public class BatchModeDownloadMonitor
|
||||||
|
|
||||||
String url = transferEvent.getWagon().getRepository().getUrl();
|
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
|
// TODO: can't use getLogger() because this isn't currently instantiated as a component
|
||||||
System.out.println( message + ": " + url + "/" + transferEvent.getResource().getName() );
|
System.out.println( message + ": " + url + "/" + transferEvent.getResource().getName() );
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,7 @@ public class MavenCli
|
||||||
ClassWorld classWorld = new ClassWorld( "plexus.core", Thread.currentThread().getContextClassLoader() );
|
ClassWorld classWorld = new ClassWorld( "plexus.core", Thread.currentThread().getContextClassLoader() );
|
||||||
|
|
||||||
int result = main( args, classWorld );
|
int result = main( args, classWorld );
|
||||||
|
|
||||||
System.exit(result);
|
System.exit(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -150,7 +151,7 @@ public class MavenCli
|
||||||
interactive = false;
|
interactive = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean usePluginRegistry = true;
|
boolean usePluginRegistry = false;
|
||||||
|
|
||||||
if ( commandLine.hasOption( CLIManager.SUPPRESS_PLUGIN_REGISTRY ) )
|
if ( commandLine.hasOption( CLIManager.SUPPRESS_PLUGIN_REGISTRY ) )
|
||||||
{
|
{
|
||||||
|
|
|
@ -34,7 +34,6 @@ import org.apache.maven.wagon.resource.Resource;
|
||||||
public abstract class AbstractConsoleDownloadMonitorTest
|
public abstract class AbstractConsoleDownloadMonitorTest
|
||||||
extends TestCase
|
extends TestCase
|
||||||
{
|
{
|
||||||
|
|
||||||
private AbstractConsoleDownloadMonitor monitor;
|
private AbstractConsoleDownloadMonitor monitor;
|
||||||
|
|
||||||
public AbstractConsoleDownloadMonitorTest()
|
public AbstractConsoleDownloadMonitorTest()
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -146,7 +146,7 @@
|
||||||
<module>maven-tools</module>
|
<module>maven-tools</module>
|
||||||
</modules>
|
</modules>
|
||||||
<properties>
|
<properties>
|
||||||
<wagonVersion>1.0-beta-2-SNAPSHOT</wagonVersion>
|
<wagonVersion>1.0-beta-1</wagonVersion>
|
||||||
<plexusVersion>1.0-alpha-13</plexusVersion>
|
<plexusVersion>1.0-alpha-13</plexusVersion>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
Loading…
Reference in New Issue