On Tue, Apr 19, 2011 at 9:24 PM, Rupert Smith <[email protected]> wrote: > I should also add. There seem to be 3 issues here: > > * Adding a :test classifier to a module set include, should include the test > jar. > * The syntax of the artifact vector needs to be clarified in documentation, > wrt how wild cards are used. That is, is it group:artifact:*:*:test or > group:artifact:*:test or ... > * When specifying a test classifier is it 'test' or 'tests'? The scope seems > to be called 'test' and the classifier seems to be 'tests', this is very > confusing.
I think you should be using "type" = "test-jar". http://maven.apache.org/plugins/maven-assembly-plugin/advanced-descriptor-topics.html (See http://maven.apache.org/ref/3.0.3/maven-model/maven.html#class_dependency http://maven.apache.org/plugins/maven-jar-plugin/test-jar-mojo.html is what generates the test-jar) So I suspect that using the pattern groupId:artifactId:type:classifier com.rapidaddition:genzero-runtests:test-jar would work (where here classifier is null) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
