You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/docs/asciidoc/getting-started.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,6 @@ The following listings show how to do so in both Maven and Gradle:
146
146
</plugin>
147
147
<plugin> <2>
148
148
<artifactId>maven-resources-plugin</artifactId>
149
-
<version>2.7</version>
150
149
<executions>
151
150
<execution>
152
151
<id>copy-resources</id>
@@ -172,6 +171,7 @@ The following listings show how to do so in both Maven and Gradle:
172
171
----
173
172
<1> The existing declaration for the Asciidoctor plugin.
174
173
<2> The resource plugin must be declared after the Asciidoctor plugin as they are bound to the same phase (`prepare-package`) and the resource plugin must run after the Asciidoctor plugin to ensure that the documentation is generated before it's copied.
174
+
If you are not using Spring Boot and its plugin management, declare the plugin with an appropriate `<version>`.
175
175
<3> Copy the generated documentation into the build output's `static/docs` directory, from where it will be included in the jar file.
0 commit comments