You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the plugins directory is empty and the application starts
Exception in thread "main" java.lang.IllegalArgumentException: Layer 'app': parent layer 'plugins' not configured yet
at org.moditect.layrry.internal.LayersImpl.getParentLayers(LayersImpl.java:195)
at org.moditect.layrry.internal.LayersImpl.run(LayersImpl.java:103)
at org.moditect.layrry.Layrry.run(Layrry.java:41)
at org.moditect.layrry.launcher.LayrryLauncher.launch(LayrryLauncher.java:48)
at org.moditect.layrry.launcher.LayrryLauncher.main(LayrryLauncher.java:34)
When the plugins directory has a layer such as
plugins
└── tile-clock-0.0.0
└── tile-clock-0.0.0.jar
Exception in thread "main" java.lang.IllegalArgumentException: Layer 'app': parent layer 'tile-clock-0.0.0' not configured yet
at org.moditect.layrry.internal.LayersImpl.getParentLayers(LayersImpl.java:195)
at org.moditect.layrry.internal.LayersImpl.run(LayersImpl.java:103)
at org.moditect.layrry.Layrry.run(Layrry.java:41)
at org.moditect.layrry.launcher.LayrryLauncher.launch(LayrryLauncher.java:48)
at org.moditect.layrry.launcher.LayrryLauncher.main(LayrryLauncher.java:34)
The text was updated successfully, but these errors were encountered:
Uh, oh, thanks for reporting. Definitely needs fixing; that said, I don't think you'd need the separate "app" layer, it should work if you move its contents to the "core" layer (like in the Vert.x example).
Given the following configuration
Where the
plugin
layer is a parent ofapp
.When the
plugins
directory is empty and the application startsWhen the
plugins
directory has a layer such asThe text was updated successfully, but these errors were encountered: