You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by DebasisM <de...@gmail.com> on 2010/01/05 16:36:27 UTC

Problem in site deployment

Hi,
 I am generating a site and trying to deploy it.I am facing two problem.
 1.i am having 8 modules.i am using pom aggregation for running install and
deploy goal.but site i want to generate only for parent not for the child
modules.
 how to prevent only for the site generation.

2.for deployment of the site to the sever(windows not unix) .i am trying
with ftp.error-unsupported protocol.

Thanks,
Debasis
-- 
View this message in context: http://old.nabble.com/Problem-in-site-deployment-tp27026637p27026637.html
Sent from the Maven - Users mailing list archive at Nabble.com.


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


Re: Problem in site deployment

Posted by Dennis Lundberg <de...@apache.org>.
DebasisM wrote:
> Hi,
>  I am generating a site and trying to deploy it.I am facing two problem.
>  1.i am having 8 modules.i am using pom aggregation for running install and
> deploy goal.but site i want to generate only for parent not for the child
> modules.
>  how to prevent only for the site generation.

Run 'mvn -N site-deploy' from the parent project.

> 2.for deployment of the site to the sever(windows not unix) .i am trying
> with ftp.error-unsupported protocol.

The FTP protocol is not available in your version of Maven. You need to
tell Maven to extend itself with a wagon that supports the FTP protocol.

  <build>
    <extensions>
      <extension>
        <groupId>org.apache.maven.wagon</groupId>
         <artifactId>wagon-ftp</artifactId>
         <version>1.0-beta-4</version>
      </extension>
    </extensions>
  ...
  </build>

> Thanks,
> Debasis


-- 
Dennis Lundberg

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