The maven-site-plugin is also available as 2.0-SNAPSHOT and
2.0-beta-3-SNAPSHOT on Codehaus Maven snapshot repo:
http://snapshots.maven.codehaus.org/maven2/org/apache/maven/plugins/maven-site-plugin/

    <repository>
      <id>Maven Snapshots</id>
      <url>http://snapshots.maven.codehaus.org/maven2/</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <releases>
        <enabled>false</enabled>
      </releases>
    </repository>

Wayne

On 3/6/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote:
> To use a snapshot version, you need to add this in the repositories
> section of your pom :
>
> <repository>
>            <id>...</id>
>            <name>...</name>
>            <layout>default</layout>
>            <url>http://cvs.apache.org/maven-snapshot-repository/</url>
>            <snapshots>
>                <checksumPolicy>ignore</checksumPolicy>
>                <updatePolicy>always</updatePolicy>
>                <enabled>true</enabled>
>            </snapshots>
>        </repository>
>
> On 3/6/06, François-Xavier Busch <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > I am also interested by gathering all modules reports with the site plugin,
> > so I have 2 questions :
> > - I tried the site:stage goal but maven answers : "Required goal not found:
> > site:stage"
> > - I wanted to use the last version of the site plugin but how could I know
> > what is the snapshot version ? I tried 2.0-SNAPSHOT but is doesn't seem to
> > work.
> >
> > Thanks.
> >
> > On 3/4/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote:
> > >
> > > A new version of the site plugin hasn't been released in a while. This
> > > bug is fixed in the snapshot version.
> > >
> > > On 3/3/06, Marcin Cetnarski <[EMAIL PROTECTED]> wrote:
> > > > Hello Mick,
> > > >
> > > >
> > > > MK> I have a project that contains about 8 different modules, and
> > > sub-modules.
> > > > MK> When I run site:site, the docs seem to get run for the whole
> > > project, but
> > > > MK> the main index.html does not tie the docs together like they did in
> > > m102.
> > > >
> > > > MK> What am I missing to get a cohesive set of docs?
> > > >
> > > > First of all you should use snapshot version of maven-site-pugin (and
> > > > some snapshot artifacts from doxia module). It works fine with
> > > multiprojects. If
> > > > you want to see an offline version of site, use site:stage mojo.
> > > >
> > > > ...
> > > >   <reporting>
> > > >     <plugins>
> > > >       <plugin>
> > > >         <groupId>org.apache.maven.plugins</groupId>
> > > >         <artifactId>maven-site-plugin</artifactId>
> > > >         <configuration>
> > > >           <stagingDirectory>E:/stage</stagingDirectory>
> > > >         </configuration>
> > > >       </plugin>
> > > >     </plugins>
> > > >   </reporting>
> > > > ...
> > > >
> > > > --
> > > > Best regards,
> > > >  Marcin Cetnarski
> > > >
> > > >
> > > > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > >
> > >
> > > --
> > > Alexandre Poitras
> > > Québec, Canada
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
>
>
> --
> Alexandre Poitras
> Québec, Canada
>
> ---------------------------------------------------------------------
> 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