You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by jv...@apache.org on 2003/01/05 00:41:50 UTC

cvs commit: jakarta-turbine-maven/src/plugins-build/deploy plugin.jelly project.xml

jvanzyl     2003/01/04 15:41:50

  Modified:    src/plugins-build/deploy plugin.jelly project.xml
  Log:
  o Adding jsch and jce dependencies for the ssh deployer.
  
  Revision  Changes    Path
  1.12      +10 -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.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- plugin.jelly	12 Dec 2002 10:53:47 -0000	1.11
  +++ plugin.jelly	4 Jan 2003 23:41:50 -0000	1.12
  @@ -124,6 +124,15 @@
       <!-- ================================================================== -->
       
       <define:tag name="copy-deps">
  +      <!--
  +       |
  +       | If a POM descriptor has been specified then use it.
  +       |
  +       -->
  +      <j:if test="${projectDescriptor != null}">
  +        <maven:pom var="pom" projectDescriptor="${projectDescriptor}"/>
  +      </j:if>
  +    
         <j:set var="mavenRepoLocal" value='${context.getVariable("maven.repo.local")}'/>
         <mkdir dir="${todir}"/>
         <copy todir="${todir}" flatten="true">
  @@ -142,7 +151,7 @@
           </fileset>
         </copy>
       </define:tag>
  -  
  +
     </define:taglib>
   
     <!-- ================================================================== -->
  
  
  
  1.5       +37 -0     jakarta-turbine-maven/src/plugins-build/deploy/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/plugins-build/deploy/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml	15 Sep 2002 16:56:46 -0000	1.4
  +++ project.xml	4 Jan 2003 23:41:50 -0000	1.5
  @@ -66,6 +66,43 @@
       </developer>
     </developers>
   
  +  <dependencies>
  +
  +    <!--
  +     |
  +     | Need this so that deployers can know about Projects 
  +     | and Artifacts.
  +     |
  +     -->
  +    
  +    <dependency>
  +      <id>maven</id>
  +      <version>beta-8</version>
  +      <jar>maven.jar</jar>
  +    </dependency>
  +    
  +    <dependency>
  +      <id>commons-jelly</id>
  +      <version>SNAPSHOT</version>
  +    </dependency>
  +    
  +    <!--
  +     | Deployers
  +     -->
  +    
  +    <dependency>
  +      <id>jsch</id>
  +      <version>0.0.9</version>
  +    </dependency>
  +
  +    <dependency>
  +      <id>jce</id>
  +      <version>1.2.2</version>
  +    </dependency>
  +    
  +  </dependencies>
  +
  +
     <build>
   
       <nagEmailAddress>turbine-maven-dev@jakarta.apache.org</nagEmailAddress>