Skip to content

Commit 6de6f46

Browse files
committed
GH-550 - Polishing.
1 parent 1dd7238 commit 6de6f46

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/docs/antora/modules/ROOT/pages/verification.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@ See xref:fundamentals.adoc#modules.explicit-dependencies[Explicit Application Mo
3030

3131
Spring Modulith optionally integrates with the jMolecules ArchUnit library and, if present, automatically triggers its Domain-Driven Design verification rules described https://github.com/xmolecules/jmolecules-integrations/tree/main/jmolecules-archunit[here].
3232

33-
3433
[[excluding-packages]]
3534
== Excluding Packages
3635

37-
In case you like to exclude certain Java classes or full packages, you can do so with:
36+
In case you would like to exclude certain Java classes or full packages from the application module inspection, you can do so with:
3837

3938
[tabs]
4039
======
@@ -52,10 +51,11 @@ ApplicationModules.of(Application::class, JavaClass.Predicates.resideInAPackage(
5251
----
5352
======
5453

55-
Different examples of exclusions:
54+
Additional examples of exclusions:
5655

5756
* `com.example.db` -- Matches all files in the given package `com.example.db`.
5857
* `com.example.db..` -- Matches all files in the given package (`com.example.db`) and all sub-packages (`com.example.db.a` or `com.example.db.b.c`).
59-
* `..example..` -- Matches 'a.example', 'a.example.b' or 'a.b.example.c.d', but not 'a.exam.b'
58+
* `..example..` -- Matches `a.example`, `a.example.b` or `a.b.example.c.d`, but not `a.exam.b`
59+
60+
Full details about possible matchers can be found in the JavaDoc of ArchUnit https://github.com/TNG/ArchUnit/blob/main/archunit/src/main/java/com/tngtech/archunit/core/domain/PackageMatcher.java[`PackageMatcher`].
6061

61-
Full details about possible matchers can be found in the JavaDoc of PackageMatcher: https://github.com/TNG/ArchUnit/blob/main/archunit/src/main/java/com/tngtech/archunit/core/domain/PackageMatcher.java

0 commit comments

Comments
 (0)