This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch karaf-4.4.x
in repository https://gitbox.apache.org/repos/asf/karaf.git
The following commit(s) were added to refs/heads/karaf-4.4.x by this push:
new eea110a51c [KARAF-7800] Upgrade asciidoctor-maven-plugin to 2.2.5
eea110a51c is described below
commit eea110a51c4a9d8a2474ad7340522aaef0fd17c8
Author: Robert Varga <[email protected]>
AuthorDate: Mon Jan 15 13:33:52 2024 +0100
[KARAF-7800] Upgrade asciidoctor-maven-plugin to 2.2.5
(cherry picked from commit 4d524a6593ffaa6f521f8d836e82ece771225b28)
---
manual/pom.xml | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/manual/pom.xml b/manual/pom.xml
index 6150db97dc..26233c9c02 100644
--- a/manual/pom.xml
+++ b/manual/pom.xml
@@ -213,7 +213,7 @@
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
- <version>1.5.6</version>
+ <version>2.2.5</version>
<executions>
<execution>
<id>output-html</id>
@@ -222,10 +222,9 @@
<goal>process-asciidoc</goal>
</goals>
<configuration>
-
<sourceHighlighter>coderay</sourceHighlighter>
- <backend>html5</backend>
<doctype>article</doctype>
<attributes>
+
<source-highlighter>coderay</source-highlighter>
<toc />
<linkcss>false</linkcss>
</attributes>
@@ -235,7 +234,9 @@
<configuration>
<sourceDirectory>src/main/asciidoc</sourceDirectory>
<headerFooter>true</headerFooter>
-
<imagesDir>src/main/asciidoc/images</imagesDir>
+ <attributes>
+
<imagesdir>src/main/asciidoc/images</imagesdir>
+ </attributes>
</configuration>
</plugin>
<plugin>