Hello, I want to create a module for checking some java files for some text in a maven war project, depending on the presence of a dependency entry in pom.xml. I tried to add an implementation dependency on org.netbeans.modules:org-netbeans-modules-maven, but this causes many problems, which seem to be related to dependency on external maven jars So I tried to add "org.apache.maven:maven-model" and got the following results: - with scope "provided", the org.apache.maven.model.Model class could not be found at runtime. - with default scope, I had to add all the modules maven depends on, too, but ended with some other CNFEs at runtime. Probably just a Classloader issue? So, the question is, how to use maven integration module to be able to get notifications about dependency changes? Kind regards, Peter --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
