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
List<File> list = Stream.concat(project.getArtifacts().stream(), attachDependencies.stream())
The documentation of that call states: Contents are lazily populated, so depending on what phases have run dependencies in some scopes won't be included
So maybe that has something to do with it?
I have no idea what a fix would look like, so sadly I can't provide a PR on the matter.
The text was updated successfully, but these errors were encountered:
I have a project with transitive dependencies which are marked as
runtime
. These dependencies do not make it on the-imagecp
of the native-image call.It looks like they are not included in the returned collection of
project.getArtifacts()
here:gluonfx-maven-plugin/src/main/java/com/gluonhq/NativeBaseMojo.java
Line 219 in 231a958
The documentation of that call states:
Contents are lazily populated, so depending on what phases have run dependencies in some scopes won't be included
So maybe that has something to do with it?
I have no idea what a fix would look like, so sadly I can't provide a PR on the matter.
The text was updated successfully, but these errors were encountered: