From a1a2271133505f42e53153f5c2c1ea262f5ce039 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 2 Sep 2020 11:13:06 +0100 Subject: [PATCH] Test Asciidoctor extension against AsciidoctorJ 2.2, 2.3, and 2.4 Closes gh-694 --- gradle.properties | 3 +++ spring-restdocs-asciidoctor/build.gradle | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index bc9f2aa8..9720e6df 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,4 +4,7 @@ asciidoctorj16Version=1.6.2 javaFormatVersion=0.0.15 asciidoctorj20Version=2.0.0 asciidoctorj21Version=2.1.0 +asciidoctorj22Version=2.2.0 +asciidoctorj23Version=2.3.1 +asciidoctorj24Version=2.4.0 org.gradle.daemon=false diff --git a/spring-restdocs-asciidoctor/build.gradle b/spring-restdocs-asciidoctor/build.gradle index 0fedbcd3..89dc101b 100644 --- a/spring-restdocs-asciidoctor/build.gradle +++ b/spring-restdocs-asciidoctor/build.gradle @@ -28,6 +28,12 @@ matrixTest { asciidoctorj { group = 'org.asciidoctor' artifact = 'asciidoctorj' - versions = [ asciidoctorj16Version, asciidoctorj20Version, asciidoctorj21Version ] + versions = [ asciidoctorj16Version, + asciidoctorj20Version, + asciidoctorj21Version, + asciidoctorj22Version, + asciidoctorj23Version, + asciidoctorj24Version + ] } } \ No newline at end of file