multiproject with classifier dependency on another module ---------------------------------------------------------
Key: MECLIPSE-229 URL: http://jira.codehaus.org/browse/MECLIPSE-229 Project: Maven 2.x Eclipse Plugin Issue Type: Bug Components: multiproject Affects Versions: 2.3, 2.2 Environment: windows, java5, multiproject Reporter: Vlad Skarzhevskyy I have module "microemu-injected" with artifact <classifier>inject</classifier> <dependency> <groupId>org.microemu</groupId> <artifactId>microemu-injected</artifactId> <version>${version}</version> <classifier>inject</classifier> </dependency> When I generate eclipse project I got dependency on complete project not just to its artifact. <classpathentry kind="src" path="/microemu-injected"/> When generating project for each module separately <classpathentry kind="var" path="M2_REPO/org/microemu/microemu-injected/2.0.1-SNAPSHOT/microemu-injected-2.0.1-SNAPSHOT-inject.jar"/> And this is what I need. But I have other project dependancy so I can't use useProjectReferences:false Project https://microemulator.svn.sourceforge.net/svnroot/microemulator/trunk/microemulator Is it posible to add filter to configuration of maven-eclipse-plugin to trigger different behaviour for this situation. like this: <dependencySets> <dependencySet> <useProjectReferences>false</useProjectReferences> <includes> <include>microemu-injected</include> </includes> </dependencySet> </dependencySets> or Simple : <useProjectReferencesWithclassifier>false<useProjectReferencesWithclassifier> -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira