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

This commit is contained in:
Oliver Drotbohm
2023-11-17 17:14:17 +01:00
parent af0323893b
commit 9d30fcd29c

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",