You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sn...@apache.org on 2006/08/20 15:27:25 UTC

svn commit: r432967 - /maven/maven-1/plugins/trunk/eclipse/src/plugin-resources/templates/classpath.jelly

Author: snicoll
Date: Sun Aug 20 06:27:25 2006
New Revision: 432967

URL: http://svn.apache.org/viewvc?rev=432967&view=rev
Log:
[MPECLIPSE-119] Fixed duplicate test entries. Cactus test source directory does not override testSrcDir var anymore.

Modified:
    maven/maven-1/plugins/trunk/eclipse/src/plugin-resources/templates/classpath.jelly

Modified: maven/maven-1/plugins/trunk/eclipse/src/plugin-resources/templates/classpath.jelly
URL: http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/eclipse/src/plugin-resources/templates/classpath.jelly?rev=432967&r1=432966&r2=432967&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/eclipse/src/plugin-resources/templates/classpath.jelly (original)
+++ maven/maven-1/plugins/trunk/eclipse/src/plugin-resources/templates/classpath.jelly Sun Aug 20 06:27:25 2006
@@ -194,8 +194,8 @@
     <j:set var="ignoreCactus" value="false" />
     <j:if test="${cactusSourcePresent == 'true'}">
       <ant:echo>Contains Cactus Tests!</ant:echo>
-      <maven:makeRelativePath var="testSrcDir" basedir="${basedir}" path="${cactusSrcDir}" separator="/" />
-      <classpathentry kind="src" path="${testSrcDir}" />
+      <maven:makeRelativePath var="cactusTestSrcDir" basedir="${basedir}" path="${cactusSrcDir}" separator="/" />
+      <classpathentry kind="src" path="${cactusTestSrcDir}" />
 
       <maven:get var="cactusPlugin" plugin='cactus-maven' property='plugin' />
       <j:set var="depVersion">${cactusPlugin.getDependency('cactus').getVersion()}</j:set>