asciidoctor-gradle-plugin
asciidoctor-gradle-plugin copied to clipboard
uri:classloader:/gems/prawn-icon-3.0.0/lib/prawn/icon/font_data.rb:9: warning: The Psych YAML extension failed to load
I use following config of plugins
id "org.asciidoctor.jvm.base" version "4.0.3" id 'org.asciidoctor.jvm.convert' version '4.0.3' id 'org.asciidoctor.jvm.pdf' version "4.0.3" id 'org.asciidoctor.jvm.gems' version '4.0.3'
After i updated to this version i can't build pdf due Psych YAML error. Execution failed for task ':asciidoctorPdf'.
A failure occurred while executing org.ysb33r.grolifant.internal.v6.jvm.worker.InternalWorkerAppExecutor org.asciidoctor.gradle.remote.AsciidoctorRemoteExecutionException: ERROR: Running Asciidoctor whilst attempting to process [masked]\ApiDescription.adoc using backend pdf
Task configuration:
asciidoctorPdf { doNotTrackState("Need to run on local machine") sourceDir file('documentation') baseDirFollowsSourceFile() sources { include 'internal/*.adoc', 'external/*.adoc' } outputDir file("$buildDir/docs") resources { from('documentation/**') { include '**.png', '**.jpg' } } }