dion        2003/10/02 21:05:43

  Modified:    eclipse/src/plugin-resources/templates classpath.jelly
               eclipse  project.xml
               eclipse/xdocs changes.xml
  Log:
  Only classpath dependencies are added
  
  Revision  Changes    Path
  1.5       +5 -1      
maven-plugins/eclipse/src/plugin-resources/templates/classpath.jelly
  
  Index: classpath.jelly
  ===================================================================
  RCS file: 
/home/cvs/maven-plugins/eclipse/src/plugin-resources/templates/classpath.jelly,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- classpath.jelly   20 Aug 2003 12:37:18 -0000      1.4
  +++ classpath.jelly   3 Oct 2003 04:05:42 -0000       1.5
  @@ -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>
  
  
  
  1.16      +1 -1      maven-plugins/eclipse/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/eclipse/project.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- project.xml       29 Sep 2003 05:19:11 -0000      1.15
  +++ project.xml       3 Oct 2003 04:05:42 -0000       1.16
  @@ -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>
  
  
  
  1.7       +7 -0      maven-plugins/eclipse/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/eclipse/xdocs/changes.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- changes.xml       29 Sep 2003 06:18:40 -0000      1.6
  +++ changes.xml       3 Oct 2003 04:05:43 -0000       1.7
  @@ -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.
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to