From 33d66b7f827ac066819e57e0cea1b36c93a1f607 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 29 Oct 2020 09:16:37 -0700 Subject: [PATCH] Fix to spring-doc-resources version See 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 e39a410fd1e..d19a9c1ff80 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.3.RELEASE")); + .add(project.getDependencies().create("io.spring.docresources:spring-doc-resources:0.2.3")); UnzipDocumentationResources unzipResources = project.getTasks().create("unzipDocumentationResources", UnzipDocumentationResources.class); unzipResources.setResources(documentationResources);