Re: WELCOME to users@maven.apache.org

2017-06-16 Thread Dave Brosius
Greetings, I have a custom maven plugin that uses MavenProject to getCompileDependencies() on. This works fine. But now i realize that I want to get all the dependencies for a multi module pom. So i use, @Parameter(property = "reactorProjects", readonly = true, required = true)

Re: WELCOME to users@maven.apache.org

2005-12-18 Thread Behrang Saeedzadeh
Hi, How can I exclude certain JAR files (like those that are only needed during unit testing, say TestNG JARs, or for code generation, like XDoclet) from being added to my distribution ZIP file? -- Science is a differential equation. Religion is a boundary limit - Alan Turing Behrang Saeedzadeh

Re: WELCOME to users@maven.apache.org

2005-12-18 Thread Arik Kfir
Hi, Assuming you are using Maven 2.0.x, you can add a scope element to your dependency, like this: dependency groupId... artifactId... version... scopetest/scope /dependency If you are using Maven 1.0.x I think you need to do this manually via some jelly script hooking... On 12/18/05,