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: src/docs/antora/modules/ROOT/pages/documentation.adoc
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -308,7 +308,8 @@ Requires the usage of the `spring-boot-configuration-processor` artifact to extr
308
308
[[aggregating-document]]
309
309
== Generating an Aggregating Document
310
310
311
-
The aggregating document can be generated by calling `Documenter.writeAggregatingDocument()`:
311
+
When using `Documenter.writeDocumentation(…)` an `all-docs.adoc` file will be generated, linking all generated diagrams and Application Module Canvases.
312
+
We can manually generate the aggregating document by calling `Documenter.writeAggregatingDocument()`:
312
313
313
314
.Generating an aggregating document using `Documenter`
314
315
[tabs]
@@ -325,7 +326,7 @@ class DocumentationTests {
325
326
void writeDocumentationSnippets() {
326
327
327
328
new Documenter(modules)
328
-
.writeAggregatingDocument();
329
+
.writeAggregatingDocument();
329
330
}
330
331
}
331
332
----
@@ -346,4 +347,5 @@ class DocumentationTests {
346
347
----
347
348
======
348
349
349
-
The aggregating document will include any existing application module component diagrams and application module canvases. If there are none, then this method will not produce an output file.
350
+
The aggregating document will include any existing application module component diagrams and application module canvases.
351
+
If there are none, then this method will not produce an output file.
0 commit comments