diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-04 13:42:52 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | 6763c1e92971eb7d06749ad4d947049c4b7314f6 (patch) | |
tree | 69e1f6a6c804354806f8bdfc607c7ca1d241c63e | |
parent | a70f0664a07103dd124a1a7fdf9bb6edd111961f (diff) | |
download | aspectj-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.xml | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -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> |