Bummer.

Does someone know for sure on this one? And what the dependencies are?
--
dIon Gillard, Multitask Consulting
Blog:      http://blogs.codehaus.org/people/dion/
Pub Key:http://blogs.codehaus.org/people/dion/public-key.asc


"Emmanuel Venisse" <[EMAIL PROTECTED]> wrote on 28/10/2003 04:01:55 AM:

> For use it, I think we must add ant-optional and netcomponents to
> dependencies site plugin.
> 
> Emmanuel
> 
> -----Message d'origine-----
> De: [EMAIL PROTECTED]
> A: [EMAIL PROTECTED]
> Date: 27/10/03
> Objet: cvs commit: maven/src/plugins-build/site plugin.jelly
> 
> dion        2003/10/27 08:31:08
> 
>   Modified:    src/plugins-build/site plugin.jelly
>   Log:
>   Apply MAVEN-703.
> 
> 
>   Allows deployment of the site via FTP
> 
>   Revision  Changes    Path
>   1.20      +43 -0     maven/src/plugins-build/site/plugin.jelly
> 
>   Index: plugin.jelly
>   ===================================================================
>   RCS file: /home/cvs/maven/src/plugins-build/site/plugin.jelly,v
>   retrieving revision 1.19
>   retrieving revision 1.20
>   diff -u -r1.19 -r1.20
>   --- plugin.jelly 17 Oct 2003 01:23:51 -0000 1.19
>   +++ plugin.jelly 27 Oct 2003 16:31:08 -0000 1.20
>   @@ -64,6 +64,49 @@
> 
>        <attainGoal name="site:${maven.site.deploy.method}deploy"/>
>      </goal>
>   + 
>   +  <!--

> ================================================================== -->
>   +  <!-- S I T E  F T P  D E P L O Y 
    -->
>   +  <!-- Deploys the site using FTP 
    -->
>   +  <!--

> ================================================================== -->
>   +
>   +  <goal name="site:ftpdeploy"
>   +    prereqs="site:init"
>   +    description="Deploy the generated site docs using ftp">
>   +
>   +    <maven:user-check user="${maven.username}"/>
>   +
>   +    <echo>
>   +      siteAddress = ${pom.siteAddress}
>   +      siteDirectory = ${pom.siteDirectory}
>   +      siteUser = ${maven.username}
>   +    </echo>
>   +
>   +    <!-- This needs to taken from the project properties -->
>   +    <property name="maven.homepage" value="${pom.siteDirectory}"/>
>   +
>   +    <tar tarfile="${maven.build.dir}/${maven.final.name}-site.tar"
> basedir="${docsDest}"/>
>   +    <gzip
> zipfile="${maven.build.dir}/${maven.final.name}-site.tar.gz"
> src="${maven.build.dir}/${maven.final.name}-site.tar"/>
>   +    <delete file="${maven.build.dir}/${maven.final.name}-site.tar"/>
>   +
>   +    <!-- FTP to the server -->
>   +    <ftp server="${pom.siteAddress}"
>   +      userid="${maven.username}"
>   +      password="${maven.password}"
>   +      remotedir="${pom.siteDirectory}">
>   +      <fileset dir="${maven.build.dir}"
> includes="${maven.final.name}-site.tar.gz" />
>   +    </ftp>
>   +
>   + <!-- Expand on the server and chmod -->
>   + <telnet server="${pom.siteAddress}" userid="${maven.username}"
> password="${maven.password}">
>   +  <read string="%"/>
>   +  <write string="cd ${maven.homepage};${maven.site.gunzip.executable}
> ${maven.final.name}-site.tar.gz;${maven.site.tar.executable} xUvf
> ${maven.final.name}-site.tar;chmod -R g+u *;rm
> ${maven.final.name}-site.tar"/>
>   +  <read string="%"/>
>   + </telnet>
>   +
>   +    <!-- Delete local gzip file -->
>   +    <delete
> file="${maven.build.dir}/${maven.final.name}-site.tar.gz"/>
>   +  </goal> 
> 
>      <!--

> ================================================================== -->
>      <!-- S I T E  S S H  D E P L O Y 
    -->
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> _____________________________________________________________________
> Envie de discuter en "live" avec vos amis ? T�l�charger MSN Messenger
> http://www.ifrance.com/_reloc/m la 1�re messagerie instantan�e de France
> 
> 
> _____________________________________________________________________
> Un mot doux � envoyer? Une sortie cin� � organiser? Faites le en temps
> r�el avec MSN Messenger! C'est gratuit!   http://ifrance.com/_reloc/m
> _____________________________________________________________________
> Envie de discuter en "live" avec vos amis ? T�l�charger MSN Messenger
> http://www.ifrance.com/_reloc/m la 1�re messagerie instantan�e de France
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


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

Reply via email to