diff --git a/maven-plugin-plugin/src/it/help-basic-deprecated-annotation-only/expected-help.txt b/maven-plugin-plugin/src/it/help-basic-deprecated-annotation-only/expected-help.txt
index d05f112a..c3aeb824 100644
--- a/maven-plugin-plugin/src/it/help-basic-deprecated-annotation-only/expected-help.txt
+++ b/maven-plugin-plugin/src/it/help-basic-deprecated-annotation-only/expected-help.txt
@@ -6,7 +6,7 @@ help-deprecated-annotation-only:test
MOJO-DESCRIPTION. Some "quotation" marks and backslashes '\\', some important
javadoc
- and an inline link to test.AnotherMojo.
+ and an inline link to test.AnotherMojo .
Available parameters:
diff --git a/maven-plugin-plugin/src/it/help-basic-jdk11/expected-help.txt b/maven-plugin-plugin/src/it/help-basic-jdk11/expected-help.txt
index 25875a0e..069f241b 100644
--- a/maven-plugin-plugin/src/it/help-basic-jdk11/expected-help.txt
+++ b/maven-plugin-plugin/src/it/help-basic-jdk11/expected-help.txt
@@ -6,7 +6,7 @@ help-jdk11:test
MOJO-DESCRIPTION. Some "quotation" marks and backslashes '\\', some important
javadoc
- and an inline link to test.AnotherMojo.
+ and an inline link to test.AnotherMojo .
Available parameters:
diff --git a/maven-plugin-plugin/src/it/help-basic/expected-help.txt b/maven-plugin-plugin/src/it/help-basic/expected-help.txt
index 68d99c2b..2bed0f0d 100644
--- a/maven-plugin-plugin/src/it/help-basic/expected-help.txt
+++ b/maven-plugin-plugin/src/it/help-basic/expected-help.txt
@@ -6,7 +6,7 @@ help:test
MOJO-DESCRIPTION. Some "quotation" marks and backslashes '\\', some important
javadoc
- and an inline link to test.AnotherMojo.
+ and an inline link to test.AnotherMojo .
Available parameters:
diff --git a/maven-plugin-tools-annotations/src/test/java/org/apache/maven/tools/plugin/extractor/annotations/converter/JavadocBlockTagsToXhtmlConverterTest.java b/maven-plugin-tools-annotations/src/test/java/org/apache/maven/tools/plugin/extractor/annotations/converter/JavadocBlockTagsToXhtmlConverterTest.java
index 9ca6ca3b..a900bd36 100644
--- a/maven-plugin-tools-annotations/src/test/java/org/apache/maven/tools/plugin/extractor/annotations/converter/JavadocBlockTagsToXhtmlConverterTest.java
+++ b/maven-plugin-tools-annotations/src/test/java/org/apache/maven/tools/plugin/extractor/annotations/converter/JavadocBlockTagsToXhtmlConverterTest.java
@@ -47,7 +47,7 @@ class JavadocBlockTagsToXhtmlConverterTest {
@Test
void testSee() {
assertEquals(
- "
See also: \"Some reference\"",
+ "
\nSee also: \"Some reference\"",
converter.convert("see", "\"Some reference\"", context));
assertEquals(
", Example",
@@ -57,7 +57,7 @@ void testSee() {
ConverterContext context2 =
new SimpleConverterContext("my.package", URI.create("https://javadoc.example.com/"));
assertEquals(
- "
See also: Example",
+ "
\nSee also: Example",
converter.convert("see", "Example", context2));
}
diff --git a/pom.xml b/pom.xml
index df69f1ca..19896acb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -233,7 +233,7 @@
org.jsoup
jsoup
- 1.18.1
+ 1.21.2
org.ow2.asm