Only classpath dependencies are added

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114151 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion 2003-10-03 04:05:43 +00:00
parent eede586ee1
commit cbc566f2f1
3 changed files with 13 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<pomVersion>3</pomVersion>
<id>maven-eclipse-plugin</id>
<name>Maven Eclipse Plug-in</name>
<currentVersion>1.4</currentVersion>
<currentVersion>1.5-SNAPSHOT</currentVersion>
<description>A plugin to generate various files for the Eclipse IDE and ease the use of Maven within that environment</description>
<shortDescription>Eclipse Plugin for Maven</shortDescription>
<url>http://maven.apache.org/reference/plugins/eclipse/</url>

View File

@ -84,7 +84,11 @@
<!-- ignoring junit dependency as we've already created it -->
</j:when>
<j:otherwise>
<classpathentry kind="var" path="MAVEN_REPO${lib.urlPath}"/>
<!-- make sure it's a classpath dependency -->
<j:set var="isClasspath" value="${lib.dependency.isAddedToClasspath()}"/>
<j:if test="${isClasspath}">
<classpathentry kind="var" path="MAVEN_REPO${lib.urlPath}"/>
</j:if>
</j:otherwise>
</j:choose>
</j:forEach>

View File

@ -6,6 +6,13 @@
</properties>
<body>
<release version="1.5" date="in CVS">
<action dev="dion" type="fix">
Only classpath dependencies are generated
</action>
</release>
<release version="1.4" date="2003-09-29">
<action dev="epugh" type="add">
Added support for referencing cactus tests in classpath.