-
Classes Class Description org.codehaus.plexus.util.ReaderFactory This class has been deprecated. When reading XML, users are encouraged to pass theInputStream
directory to theMXParser.setInput(InputStream, String)
, giving anull
encoding to let the parser figure it out. For non xml usages, use the JDKFiles
utility methods.org.codehaus.plexus.util.StringInputStream As of version 1.5.2 this class should no longer be used because it does not properly handle character encoding. Instead, wrap the output fromString.getBytes(String)
into aByteArrayInputStream
.org.codehaus.plexus.util.StringOutputStream As of version 1.5.2 this class should no longer be used because it does not properly handle character encoding. Instead, useByteArrayOutputStream.toString(String)
.org.codehaus.plexus.util.WriterFactory This class has been deprecated. When writing XML, users can create theXmlStreamWriter
instance directly. For other usages, usingFiles
helper methods is recommended.
-
Fields Field Description org.codehaus.plexus.util.cli.Commandline.executable UseCommandline.setExecutable(String)
instead.org.codehaus.plexus.util.cli.Commandline.OS_NAME UseOs
class instead.org.codehaus.plexus.util.cli.Commandline.WINDOWS UseOs
class instead.