@concon121 The Maven effective pom does not include transitive dependencies because they get resolved after the effective pom is built. The Maven Dependency Plugin has a goal called build-classpath that does exactly what you are wanting minus the first entry for ./target/classes. Thoughts on switching to that?
https://maven.apache.org/plugins/maven-dependency-plugin/build-classpath-mojo.html
Looks like it would require a PR for node-maven-api as well.
I would be willing to give it a shot on another PR.
@concon121 The Maven effective pom does not include transitive dependencies because they get resolved after the effective pom is built. The Maven Dependency Plugin has a goal called
build-classpaththat does exactly what you are wanting minus the first entry for./target/classes. Thoughts on switching to that?https://maven.apache.org/plugins/maven-dependency-plugin/build-classpath-mojo.html
Looks like it would require a PR for
node-maven-apias well.I would be willing to give it a shot on another PR.