The classifier is "tests" I think and the type is just jar. You should be able to tell by looking at the file in hand. It's artifactid-version-classifier.type
-----Original Message----- From: Barrie Treloar [mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2008 7:48 AM To: Maven Users List Subject: maven-dependency-plugin: Unpacking out of a test-jar? I'm having trouble unpacking a test jar. I've tried <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-shared-resources</id> <goals> <goal>unpack-dependencies</goal> </goals> <phase>generate-resources</phase> <configuration> <outputDirectory>${project.build.directory}/examples</outputDirectory> <includeGroupIds>${project.groupId}</includeGroupIds> <includeArtifacIds>MyArtifactId</includeArtifacIds> <includeClassifiers>test</includeClassifiers> <type>test-jar</type> <excludeTransitive>true</excludeTransitive> <includes>**/examples/**</includes> <excludes>**/*.class</excludes> </configuration> </execution> </executions> And also tried <classifier>test</classifier> Anyone have suggestions? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
