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/01/17 17:04:50 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/latex plugin.jelly

dion        2003/01/17 08:04:50

  Modified:    src/plugins-build/jnlp plugin.jelly
               src/plugins-build/ejb plugin.jelly
               src/plugins-build/deploy plugin.jelly
               src/plugins-build/console plugin.jelly
               src/plugins-build/idea plugin.jelly
               src/plugins-build/ant plugin.jelly
               src/plugins-build/latex plugin.jelly
  Log:
  Changed .getXXX() to .XXX
  
  Revision  Changes    Path
  1.5       +2 -2      jakarta-turbine-maven/src/plugins-build/jnlp/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/jnlp/plugin.jelly,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- plugin.jelly	17 Jan 2003 15:58:32 -0000	1.4
  +++ plugin.jelly	17 Jan 2003 16:04:49 -0000	1.5
  @@ -68,10 +68,10 @@
   
                       <j:forEach var="lib" items="${pom.dependencies}">
                           <j:if test="${lib.getProperty('jnlp.jar')=='true'}">
  -                            <jar href="${lib.getArtifact()}"/>
  +                            <jar href="${lib.artifact}"/>
                           </j:if>
                           <j:if test="${lib.getProperty('jnlp.native.jar')=='true'}">
  -                            <nativelib href="${lib.getArtifact()}"/>
  +                            <nativelib href="${lib.artifact}"/>
                           </j:if>
                       </j:forEach>
                       <!--  This is close to what it WILL look like, but for now it is the ugly ass thing below  it-->
  
  
  
  1.7       +1 -1      jakarta-turbine-maven/src/plugins-build/ejb/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/ejb/plugin.jelly,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- plugin.jelly	17 Jan 2003 15:58:33 -0000	1.6
  +++ plugin.jelly	17 Jan 2003 16:04:50 -0000	1.7
  @@ -33,7 +33,7 @@
   
       <j:forEach var="dep" items="${pom.dependencies}">
         <j:if test="${dep.getProperty('ejb.manifest.classpath')=='true'}">
  -        <j:set var="maven.ejb.classpath" value="${maven.ejb.classpath} ${dep.getArtifact()}"/>
  +        <j:set var="maven.ejb.classpath" value="${maven.ejb.classpath} ${dep.artifact}"/>
         </j:if>
       </j:forEach>
   
  
  
  
  1.16      +1 -1      jakarta-turbine-maven/src/plugins-build/deploy/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/deploy/plugin.jelly,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- plugin.jelly	14 Jan 2003 01:38:17 -0000	1.15
  +++ plugin.jelly	17 Jan 2003 16:04:50 -0000	1.16
  @@ -151,7 +151,7 @@
               <util:tokenize var="excludeItems" delim=",">${excludes}</util:tokenize>
               <j:forEach var="exclude" items="${excludeItems}">
                 <j:set var="depToExclude" value="${pom.getDependency(exclude)}"/>
  -              <exclude name="${depToExclude.projectId}/jars/${depToExclude.jar}"/>
  +              <exclude name="${depToExclude.artifactDirectory}/jars/${depToExclude.jar}"/>
               </j:forEach>
             </j:if>
           </fileset>
  
  
  
  1.13      +2 -2      jakarta-turbine-maven/src/plugins-build/console/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/console/plugin.jelly,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- plugin.jelly	14 Jan 2003 01:37:50 -0000	1.12
  +++ plugin.jelly	17 Jan 2003 16:04:50 -0000	1.13
  @@ -48,8 +48,8 @@
   
     <goal name="console:listGoals" description="List all available goals">
       <j:set var="proj" value="${org.apache.commons.jelly.werkz.Project}"/>
  -    <j:forEach var="listGoal" items="${proj.getGoals()}" trim="false">
  -${listGoal.getName()}</j:forEach>
  +    <j:forEach var="listGoal" items="${proj.goals}" trim="false">
  +${listGoal.name}</j:forEach>
     </goal>
   
     <goal name="console:help" description="Print the help message.">
  
  
  
  1.7       +1 -1      jakarta-turbine-maven/src/plugins-build/idea/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/idea/plugin.jelly,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- plugin.jelly	16 Jan 2003 21:35:30 -0000	1.6
  +++ plugin.jelly	17 Jan 2003 16:04:50 -0000	1.7
  @@ -38,7 +38,7 @@
                 <root type="jdk" rootType="classPath" name="java version &quot;${java.version}&quot;"/>
                 <root type="output"/>
               <j:forEach var="lib" items="${pom.dependencies}">
  -              <root type="simple" url="jar://${maven.repo.local}/${lib.getArtifactDirectory()}/jars/${lib.getArtifact()}!/"/>
  +              <root type="simple" url="jar://${maven.repo.local}/${lib.artifactDirectory}/jars/${lib.artifact}!/"/>
               </j:forEach>
               </root>
             </classPath>
  
  
  
  1.28      +1 -1      jakarta-turbine-maven/src/plugins-build/ant/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/ant/plugin.jelly,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- plugin.jelly	14 Jan 2003 01:35:45 -0000	1.27
  +++ plugin.jelly	17 Jan 2003 16:04:50 -0000	1.28
  @@ -312,7 +312,7 @@
       <j:forEach var="dep" items="${pom.dependencies}">
       <get 
         src="${maven.repo.remote}/${dep.artifactDirectory}/jars/${dep.artifact}"
  -      dest="lib/${dep.getArtifact()}"
  +      dest="lib/${dep.artifact}"
         usetimestamp="true"
         ignoreerrors="true"
       /></j:forEach>
  
  
  
  1.6       +1 -1      jakarta-turbine-maven/src/plugins-build/latex/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/latex/plugin.jelly,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- plugin.jelly	30 Nov 2002 00:59:49 -0000	1.5
  +++ plugin.jelly	17 Jan 2003 16:04:50 -0000	1.6
  @@ -37,7 +37,7 @@
           <u:tokenize var="docs" delim=" ">${maven.latex.docs}</u:tokenize>
   
           <j:forEach var="doc" items="${docs}"> 
  -          <j:if test="${doc.equals(file.getName())}">
  +          <j:if test="${doc.equals(file.name)}">
               <echo>Generating from ${file}</echo>
               <latex latexfile="${file.path}"
                      pdftex="on"