mirror of https://github.com/apache/maven.git
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:
parent
6e9780e30e
commit
860d78b1c0
|
@ -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;
|
||||||
|
|
|
@ -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
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it.cli;
|
package org.codehaus.plexus.util.cli;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The MIT License
|
* The MIT License
|
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it.cli;
|
package org.codehaus.plexus.util.cli;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The MIT License
|
* The MIT License
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it.cli;
|
package org.codehaus.plexus.util.cli;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The MIT License
|
* The MIT License
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it.cli;
|
package org.codehaus.plexus.util.cli;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The MIT License
|
* The MIT License
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it.cli;
|
package org.codehaus.plexus.util.cli;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The MIT License
|
* The MIT License
|
|
@ -1,4 +1,4 @@
|
||||||
package org.apache.maven.it.cli;
|
package org.codehaus.plexus.util.cli;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The MIT License
|
* The MIT License
|
|
@ -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;
|
|
@ -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;
|
Loading…
Reference in New Issue