From 5d77c29c538d428fa71ed4d90ab455f2f95bed69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Teglhus=20M=C3=B8ller?= Date: Mon, 12 May 2025 16:24:27 +0200 Subject: [PATCH] fix: unbreak copy in bootJar example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I could not get /html5 to work but removing it made it work. It is also what is done in this example https://github.com/spring-projects/spring-restdocs-samples/blob/7ccbf89908ce1726c9c7dd30d291bb61f95436a3/rest-assured/build.gradle#L49 Signed-off-by: Jens Teglhus Møller --- docs/src/docs/asciidoc/getting-started.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docs/asciidoc/getting-started.adoc b/docs/src/docs/asciidoc/getting-started.adoc index be21ed4f..afa220a0 100644 --- a/docs/src/docs/asciidoc/getting-started.adoc +++ b/docs/src/docs/asciidoc/getting-started.adoc @@ -181,7 +181,7 @@ If you are not using Spring Boot and its plugin management, declare the plugin w ---- bootJar { dependsOn asciidoctor <1> - from ("${asciidoctor.outputDir}/html5") { <2> + from ("${asciidoctor.outputDir}") { <2> into 'static/docs' } }