| Method | Description |
|---|---|
| org.apache.maven.shared.utils.cli.StreamPumper.close() |
As of 3.2.0, removed without replacement.
|
| org.apache.maven.shared.utils.cli.StreamPumper.flush() |
As of 3.2.0, removed without replacement.
|
| org.apache.maven.shared.utils.PropertyUtils.loadProperties(File) |
As of 3.1.0, please use method
PropertyUtils.loadOptionalProperties(java.io.File). This method should not
be used as it suppresses exceptions silently when loading properties fails and returns null instead of an
empty Properties instance when the given File is null. |
| org.apache.maven.shared.utils.PropertyUtils.loadProperties(InputStream) |
As of 3.1.0, please use method
PropertyUtils.loadOptionalProperties(java.io.InputStream). This method
should not be used as it suppresses exceptions silently when loading properties fails. |
| org.apache.maven.shared.utils.PropertyUtils.loadProperties(URL) |
As of 3.1.0, please use method
PropertyUtils.loadOptionalProperties(java.net.URL). This method should not
be used as it suppresses exceptions silently when loading properties fails and returns null instead of an
empty Properties instance when the given URL is null. |