diff --git a/src/main/java/org/apache/maven/plugins/changes/ChangesReport.java b/src/main/java/org/apache/maven/plugins/changes/ChangesReport.java
index 35e3cccb..b43c2294 100644
--- a/src/main/java/org/apache/maven/plugins/changes/ChangesReport.java
+++ b/src/main/java/org/apache/maven/plugins/changes/ChangesReport.java
@@ -72,23 +72,6 @@ public class ChangesReport extends AbstractChangesReport {
@Parameter(property = "changes.addActionDate", defaultValue = "false")
private boolean addActionDate;
- /**
- * Whether HTML code within an action should be escaped. By changing this to false
you can restore the
- * behavior that was in version 2.2 of this plugin, allowing you to use HTML code to format the content of an
- * action.
- *
- * Note: If you use HTML code in an action you need to place it inside a CDATA section. - *
- * Note: Putting any kind of markup inside a CDATA section might mess up the Changes Report or - * other generated documents, such as PDFs, that are based on yourchanges.xml
file if you are not
- * careful.
- *
- * @since 2.4
- * @deprecated using markup inside CDATA sections does not work for all output formats!
- */
- @Parameter
- private Boolean escapeHTML;
-
/**
* The directory for interpolated changes.xml.
*
@@ -228,8 +211,6 @@ public boolean canGenerateReport() {
@Override
public void executeReport(Locale locale) throws MavenReportException {
- failIfUsingDeprecatedParameter(
- escapeHTML, "escapeHTML", "Using markup inside CDATA sections does not work for all output formats!");
failIfUsingDeprecatedParameter(
issueLinkTemplate,
"issueLinkTemplate",