Skip to content

Commit

Permalink
GH-373 - Fix detection of jMolecules Layered Architecture presence.
Browse files Browse the repository at this point in the history
  • Loading branch information
odrotbohm committed Nov 17, 2023
1 parent af03238 commit 9d30fcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static class JMoleculesGroupings {
.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",
Expand Down

0 comments on commit 9d30fcd

Please sign in to comment.