This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch release24.09 in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
commit cbe2e81783ff28f7e7013e53b06831680fa5e673 Author: Jacques Le Roux <[email protected]> AuthorDate: Thu Sep 25 10:33:52 2025 +0200 Improved: fix a PDF generation issue with Buildbot too now Oops, in previous I also commented out the line, here is the fix -// backends = ['html5'] + backends = ['html5'] BTW, this fixes all AsciidoctorTaskS... --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index f944d0139a..033ac80377 100644 --- a/build.gradle +++ b/build.gradle @@ -499,12 +499,12 @@ tasks.withType(AsciidoctorTask) { task -> // } else { // backends = ['html5', 'pdf'] // } - //It seems we have no choice when using Builbot we get this issue: + //It seems we have no choice when using Builbot we now get this issue: // Caused by: org.jruby.exceptions.LoadError: (LoadError) no such file to load -- asciidoctor-pdf // at org.jruby.RubyKernel.require(org/jruby/RubyKernel.java:1017) // at RUBY.require(uri:classloader:/META-INF/jruby.home/lib/ruby/stdlib/rubygems/core_ext/kernel_require.rb:85) // at RUBY.<main>(<script>:1) -// backends = ['html5'] + backends = ['html5'] } attributes \ 'doctype': 'book',

