Author: jleroux Date: Fri Apr 12 20:16:46 2019 New Revision: 1857431 URL: http://svn.apache.org/viewvc?rev=1857431&view=rev Log: Fixed: ‘./gradlew generateOfbizDocumentation’ fails with Gradle 5.0 (OFBIZ-10693)
We were still waiting for a definitive solution and fortunately it works with version 2.0.0 of asciidoctor-gradle-plugin Thanks: Mathieu for discussion and Jinghai for the fix. Modified: ofbiz/ofbiz-framework/branches/release17.12/build.gradle ofbiz/ofbiz-framework/branches/release18.12/build.gradle Modified: ofbiz/ofbiz-framework/branches/release17.12/build.gradle URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release17.12/build.gradle?rev=1857431&r1=1857430&r2=1857431&view=diff ============================================================================== --- ofbiz/ofbiz-framework/branches/release17.12/build.gradle (original) +++ ofbiz/ofbiz-framework/branches/release17.12/build.gradle Fri Apr 12 20:16:46 2019 @@ -29,7 +29,7 @@ buildscript { } dependencies { classpath 'at.bxm.gradleplugins:gradle-svntools-plugin:latest.release' - classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.8.1' // Rather than using 1.5.9.2 see OFBIZ-10693 + classpath 'org.asciidoctor:asciidoctor-gradle-plugin:2.0.0' classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.16' } } Modified: ofbiz/ofbiz-framework/branches/release18.12/build.gradle URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release18.12/build.gradle?rev=1857431&r1=1857430&r2=1857431&view=diff ============================================================================== --- ofbiz/ofbiz-framework/branches/release18.12/build.gradle (original) +++ ofbiz/ofbiz-framework/branches/release18.12/build.gradle Fri Apr 12 20:16:46 2019 @@ -29,7 +29,7 @@ buildscript { } dependencies { classpath 'at.bxm.gradleplugins:gradle-svntools-plugin:latest.release' - classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.8.1' // Rather than using 1.5.9.2 see OFBIZ-10693 + classpath 'org.asciidoctor:asciidoctor-gradle-plugin:2.0.0' classpath 'org.asciidoctor:asciidoctorj-pdf:1.5.0-alpha.16' } }