GH-379 - Fix detection of jMolecules Layered Architecture presence.

This commit is contained in:
Oliver Drotbohm
2023-11-17 17:14:17 +01:00
parent b67c657053
commit 1acd2fd2a6

View File

@@ -92,7 +92,7 @@ public class Groupings {
.isPresent("org.jmolecules.architecture.hexagonal.Port", JMoleculesGroupings.class.getClassLoader());
private static final boolean JMOLECULES_LAYERS_PRESENT = ClassUtils
.isPresent("org.jmolecules.architecture.layered", JMoleculesGroupings.class.getClassLoader());
.isPresent("org.jmolecules.architecture.layered.ApplicationLayer", JMoleculesGroupings.class.getClassLoader());
private static final boolean JMOLECULES_ONION_PRESENT = ClassUtils
.isPresent("org.jmolecules.architecture.onion.classical.ApplicationRing",