Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Number of attachments :
Description
In
src/plugins-build/linkcheck/src/main/org/apache/maven/linkcheck/LinkCheckResult.java
Line 59:
import org.apache.commons.util.XmlUtils;
may be replaced by
import org.apache.commons.lang.StringEscapeUtils;
Line 112:
... + XmlUtils.escapeXml( ...
may be replaced by
... + StringEscapeUtils.escapeXml( ...
thus getting rid of the commons-util dependency (Inactive Sandbox Component)