aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2024-01-04 13:42:52 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2024-01-06 10:09:11 +0100
commit6763c1e92971eb7d06749ad4d947049c4b7314f6 (patch)
tree69e1f6a6c804354806f8bdfc607c7ca1d241c63e
parenta70f0664a07103dd124a1a7fdf9bb6edd111961f (diff)
downloadaspectj-6763c1e92971eb7d06749ad4d947049c4b7314f6.tar.gz
aspectj-6763c1e92971eb7d06749ad4d947049c4b7314f6.zip
Fix warning in Asciidoctor Maven by JRuby version bump
Warning "Native subprocess control requires open access to the JDK IO subsystem" can be avoided by upgrading JRuby, see https://github.com/asciidoctor/asciidoctor-maven-plugin/issues/553. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
-rw-r--r--pom.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 3fd4a5ff8..99c73736f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -420,7 +420,7 @@
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.2.4</version>
<configuration>
<attributes>
<source-highlighter>coderay</source-highlighter>
@@ -429,6 +429,14 @@
<icons>font</icons>
</attributes>
</configuration>
+ <!-- TODO: Remove dependency after https://github.com/asciidoctor/asciidoctor-maven-plugin/issues/553 fix -->
+ <dependencies>
+ <dependency>
+ <groupId>org.jruby</groupId>
+ <artifactId>jruby</artifactId>
+ <version>9.4.5.0</version>
+ </dependency>
+ </dependencies>
</plugin>
</plugins>
</pluginManagement>