patch to avoid adding JUnit twice to a generated project file for projects which require JUnit as a dependency

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113412 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
jstrachan
2003-05-07 17:44:03 +00:00
parent 004e6aa9b4
commit b82a656168

View File

@@ -102,6 +102,9 @@
<j:when test="${eclipseDependency == 'true'}">
<classpathentry kind="src" path="/${lib.dependency.artifactId}"/>
</j:when>
<j:when test="${lib.dependency.groupId == 'junit'}">
<!-- ignoring junit dependency as we've already created it -->
</j:when>
<j:otherwise>
<classpathentry kind="var" path="MAVEN_REPO${lib.urlPath}"/>
</j:otherwise>