You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/09/24 08:17:04 UTC

cvs commit: maven/src/plugins-build/deploy plugin.jelly

dion        2003/09/23 23:17:04

  Modified:    src/plugins-build/deploy plugin.jelly
  Log:
  Apply MAVEN-844.
  copy-deps only copies from jars folder
  
  Revision  Changes    Path
  1.10      +2 -2      maven/src/plugins-build/deploy/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven/src/plugins-build/deploy/plugin.jelly,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- plugin.jelly	4 Aug 2003 16:15:23 -0000	1.9
  +++ plugin.jelly	24 Sep 2003 06:17:04 -0000	1.10
  @@ -145,14 +145,14 @@
           <ant:fileset dir="${mavenRepoLocal}">
             <!-- FIXME: should use pom.artifacts -->
             <j:forEach var="dep" items="${pom.dependencies}">
  -            <ant:include name="${dep.artifactDirectory}/jars/${dep.artifact}"/>
  +            <ant:include name="${dep.artifactDirectory}/${dep.type}s/${dep.artifact}"/>
             </j:forEach>
             <j:if test="${excludes != ''}">
               <!-- The excludes are a list of dep ids -->
               <util:tokenize var="excludeItems" delim=",">${excludes}</util:tokenize>
               <j:forEach var="exclude" items="${excludeItems}">
                 <j:set var="depToExclude" value="${pom.getDependency(exclude)}"/>
  -              <ant:exclude name="${depToExclude.artifactDirectory}/jars/${depToExclude.artifact}"/>
  +              <ant:exclude name="${depToExclude.artifactDirectory}/${depToExclude.type}s/${depToExclude.artifact}"/>
               </j:forEach>
             </j:if>
           </ant:fileset>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org