o align the borrowed utilities from plexus with plexus' package structure so that we can just drop in

new versions of classes when necessary.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@394310 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-04-15 15:46:05 +00:00
parent 6e9780e30e
commit 860d78b1c0
11 changed files with 22 additions and 15 deletions

View File

@ -1,9 +1,11 @@
package org.apache.maven.it; package org.apache.maven.it;
import org.apache.maven.it.cli.CommandLineException; import org.codehaus.plexus.util.cli.CommandLineException;
import org.apache.maven.it.cli.CommandLineUtils; import org.codehaus.plexus.util.cli.CommandLineUtils;
import org.apache.maven.it.cli.Commandline; import org.codehaus.plexus.util.cli.Commandline;
import org.apache.maven.it.cli.StreamConsumer; import org.codehaus.plexus.util.cli.StreamConsumer;
import org.codehaus.plexus.util.cli.WriterStreamConsumer;
import org.codehaus.plexus.util.FileUtils;
import org.xml.sax.InputSource; import org.xml.sax.InputSource;
import org.xml.sax.SAXException; import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException; import org.xml.sax.SAXParseException;

View File

@ -1,4 +1,4 @@
package org.apache.maven.it; package org.codehaus.plexus.util;
/* ==================================================================== /* ====================================================================
* The Apache Software License, Version 1.1 * The Apache Software License, Version 1.1

View File

@ -1,4 +1,4 @@
package org.apache.maven.it.cli; package org.codehaus.plexus.util.cli;
/* /*
* The MIT License * The MIT License

View File

@ -1,4 +1,4 @@
package org.apache.maven.it.cli; package org.codehaus.plexus.util.cli;
/* /*
* The MIT License * The MIT License
@ -24,6 +24,9 @@ package org.apache.maven.it.cli;
* SOFTWARE. * SOFTWARE.
*/ */
import org.codehaus.plexus.util.cli.Commandline;
import org.codehaus.plexus.util.cli.CommandLineException;
import java.io.InputStream; import java.io.InputStream;
/** /**

View File

@ -1,4 +1,4 @@
package org.apache.maven.it.cli; package org.codehaus.plexus.util.cli;
/* /*
* The MIT License * The MIT License

View File

@ -1,4 +1,4 @@
package org.apache.maven.it.cli; package org.codehaus.plexus.util.cli;
/* /*
* The MIT License * The MIT License

View File

@ -1,4 +1,4 @@
package org.apache.maven.it.cli; package org.codehaus.plexus.util.cli;
/* /*
* The MIT License * The MIT License

View File

@ -1,4 +1,4 @@
package org.apache.maven.it.cli; package org.codehaus.plexus.util.cli;
/* /*
* The MIT License * The MIT License

View File

@ -1,4 +1,4 @@
package org.apache.maven.it.cli; package org.codehaus.plexus.util.cli;
/* /*
* The MIT License * The MIT License

View File

@ -1,4 +1,4 @@
package org.apache.maven.it.cli; package org.codehaus.plexus.util.cli;
/* /*
* The MIT License * The MIT License
@ -78,6 +78,8 @@ package org.apache.maven.it.cli;
* ==================================================================== * ====================================================================
*/ */
import org.codehaus.plexus.util.cli.StreamConsumer;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;

View File

@ -1,6 +1,6 @@
package org.apache.maven.it; package org.codehaus.plexus.util.cli;
import org.apache.maven.it.cli.StreamConsumer; import org.codehaus.plexus.util.cli.StreamConsumer;
import java.io.Writer; import java.io.Writer;
import java.io.PrintWriter; import java.io.PrintWriter;