Author: philharveyonline Date: Tue Jul 16 10:58:32 2013 New Revision: 1503656
URL: http://svn.apache.org/r1503656 Log: NO-JIRA: Ant eclipse targets now support eclipse.project.suffix property. This is useful if you have multiple checkouts and wish the projects to be given distinct names. Modified: qpid/trunk/qpid/java/module.xml Modified: qpid/trunk/qpid/java/module.xml URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/module.xml?rev=1503656&r1=1503655&r2=1503656&view=diff ============================================================================== --- qpid/trunk/qpid/java/module.xml (original) +++ qpid/trunk/qpid/java/module.xml Tue Jul 16 10:58:32 2013 @@ -909,7 +909,7 @@ qpid.name=${project.name} <map from="${project.root}${file.separator}" to=''/> </pathconvert> <map property="eclipse.required.slashedprojectnames" value="${eclipse.required.projectnames}" join="${path.separator}"> - <globmapper from="*" to="/*"/> + <globmapper from="*" to="/*${eclipse.project.suffix}"/> </map> <echo message="Ant module dependencies : ${module.depends} ${module.test.depends} converted to Eclipse required project(s): ${eclipse.required.slashedprojectnames}"/> @@ -921,7 +921,7 @@ qpid.name=${project.name} <!-- Create the Eclipse .project --> <target name="eclipse-project"> <eclipse updatealways="${eclipse.updatealways}"> - <project name="${module.name}"/> + <project name="${module.name}${eclipse.project.suffix}"/> <!-- If the Eclipse task were to ever support the generation of linked resources, we would configure it to generate --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org