From 7a9956a4d517abbd3234a0d9d168bddaf7612386 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 00:35:01 +0000 Subject: [PATCH 1/2] Bump org.jsoup:jsoup from 1.18.1 to 1.21.2 Bumps [org.jsoup:jsoup](https://github.com/jhy/jsoup) from 1.18.1 to 1.21.2. - [Release notes](https://github.com/jhy/jsoup/releases) - [Changelog](https://github.com/jhy/jsoup/blob/master/CHANGES.md) - [Commits](https://github.com/jhy/jsoup/compare/jsoup-1.18.1...jsoup-1.21.2) --- updated-dependencies: - dependency-name: org.jsoup:jsoup dependency-version: 1.21.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 3fce183df5676fea4e832abc753852256593f7f5 Mon Sep 17 00:00:00 2001 From: Slawomir Jaranowski Date: Sat, 4 Oct 2025 13:37:34 +0200 Subject: [PATCH 2/2] fix tests --- .../help-basic-deprecated-annotation-only/expected-help.txt | 2 +- maven-plugin-plugin/src/it/help-basic-jdk11/expected-help.txt | 2 +- maven-plugin-plugin/src/it/help-basic/expected-help.txt | 2 +- .../converter/JavadocBlockTagsToXhtmlConverterTest.java | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) 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)); }