If I understand correctly, this can be specified in the resolver by specifying the artifact pattern.
See the documentation here: http://ant.apache.org/ivy/history/latest-milestone/settings.html James Davis • QA Engineer II/Software Engineer Applied Technical Systems, Inc. • Systems Division web: www.atsid.com • e-mail: [email protected] (p) 360.698.7100 x241 • (f) 360.698.7200 ________________________________________ From: Nick Bonatsakis [[email protected]] Sent: Monday, May 10, 2010 10:42 AM To: [email protected] Subject: resolving multiple maven artifact dependencies of same type Hello All, I have a maven pom that builds a project and publishes 3 properties files alongside the project jar file using pom code like: <execution> <id>attach-artifacts</id> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>src/war/WEB-INF/foo.properties</file> <type>properties</type> <classifier>foo</classifier> </artifact> <artifact> <file>src/war/WEB-INF/bar.properties</file> <type>properties</type> <classifier>bar</classifier> </artifact> </artifacts> </configuration> </execution> When I look in the m2 local repo, I see the jar file and these two files with the project name and version prepended. I now want to be able to pull these files into a different project using ivy. It seems that if I use the classifier attribute of <artifact>, I can only resolve one file of a given type. My ivy snippet: <dependency org="com.mycompany.myproj" name="myproj" rev="latest.integration" conf="test"> <artifact name="myproj" type="properties" ext="properties" m:classifier="foo"/> <artifact name="myproj" type="properties" ext="properties" m:classifier="bar"/> </dependency> This fails because when it runs, it wants to name both files "myproj.properties" so when it gets to the second, it fails, because the first is already there. Is there any way I can dictate how the resolved files are named? Or some other sollution to this problem? Thank you all. -- Nicholas Bonatsakis Software Engineer
