From 7a2ae089d497de0e4e1d9156fc0101afcd520d09 Mon Sep 17 00:00:00 2001 From: Oliver Drotbohm Date: Tue, 28 Feb 2023 16:00:38 +0100 Subject: [PATCH] #1856 - Properly enable Asciidoctor Diagram. --- pom.xml | 3 +++ src/main/asciidoc/fundamentals.adoc | 11 +++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 44c87cdd..0938c714 100644 --- a/pom.xml +++ b/pom.xml @@ -331,6 +331,9 @@ 4 true + + asciidoctor-diagram + diff --git a/src/main/asciidoc/fundamentals.adoc b/src/main/asciidoc/fundamentals.adoc index 49483b1e..e7b97deb 100644 --- a/src/main/asciidoc/fundamentals.adoc +++ b/src/main/asciidoc/fundamentals.adoc @@ -111,16 +111,19 @@ For more information on this, have a look at <>. ==== [plantuml, diagram-classes, format="svg"] .... +hide fields +hide methods + class RepresentationModel class EntityModel class CollectionModel class PagedModel class SlicedModel -EntityModel -|> RepresentationModel -CollectionModel -|> RepresentationModel -PagedModel -|> CollectionModel -SlicedModel -|> CollectionModel +EntityModel -up-|> RepresentationModel +CollectionModel -up-|> RepresentationModel +PagedModel -up-|> CollectionModel +SlicedModel -up-|> CollectionModel .... ====