From 2992f40222103d9f7aafbc1dbaa49bb098aab478 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 29 Oct 2020 09:06:23 -0700 Subject: [PATCH] Upgrade to spring-doc-resources 0.2.3.RELEASE Closes gh-23824 --- .../org/springframework/boot/build/AsciidoctorConventions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/java/org/springframework/boot/build/AsciidoctorConventions.java b/buildSrc/src/main/java/org/springframework/boot/build/AsciidoctorConventions.java index 503a83cf1c..e39a410fd1 100644 --- a/buildSrc/src/main/java/org/springframework/boot/build/AsciidoctorConventions.java +++ b/buildSrc/src/main/java/org/springframework/boot/build/AsciidoctorConventions.java @@ -113,7 +113,7 @@ class AsciidoctorConventions { private UnzipDocumentationResources createUnzipDocumentationResourcesTask(Project project) { Configuration documentationResources = project.getConfigurations().maybeCreate("documentationResources"); documentationResources.getDependencies() - .add(project.getDependencies().create("io.spring.docresources:spring-doc-resources:0.2.2.RELEASE")); + .add(project.getDependencies().create("io.spring.docresources:spring-doc-resources:0.2.3.RELEASE")); UnzipDocumentationResources unzipResources = project.getTasks().create("unzipDocumentationResources", UnzipDocumentationResources.class); unzipResources.setResources(documentationResources);