Support for Multi-project Web Sites

2006-04-20 Thread Ryan Wynn
I haven't been able to find maven2 documentation on how to create a parent site that automatically includes links to all the modules under it. Has a solution for this been developed yet, and if so where can I find documentation on it? Maven is invoking site:site on all the reactor projects but th

RE: Support for Multi-project Web Sites

2006-04-24 Thread Vijay Shanker
Vijay From: Ryan Wynn [mailto:[EMAIL PROTECTED] Sent: Fri 4/21/2006 1:32 PM To: Maven Users List Subject: Re: Support for Multi-project Web Sites On 4/21/06, Elliot Metsger <[EMAIL PROTECTED]> wrote: > Hi - > > See > http://www.nabble.com/Running-maven-site-plugin-from-svn-

Re: Support for Multi-project Web Sites

2006-04-24 Thread Ryan Wynn
> > > From: Ryan Wynn [mailto:[EMAIL PROTECTED] > Sent: Fri 4/21/2006 1:32 PM > To: Maven Users List > Subject: Re: Support for Multi-project Web Sites > > > > On 4/21/06, Elliot Metsger <[EMAIL PROTECTED]> wrote: > > Hi - >

RE: Support for Multi-project Web Sites

2006-04-25 Thread Vijay Shanker
Subject: Re: Support for Multi-project Web Sites On 4/24/06, Vijay Shanker <[EMAIL PROTECTED]> wrote: > Hi Ryan, > > I am facing the same problem while building reports for multiple modules. > Parent report does not include links of child modules' reports. > > If it is w

RE: Support for Multi-project Web Sites

2006-04-25 Thread dviel
or the link. > > Vijay > > > > > From: Ryan Wynn [mailto:[EMAIL PROTECTED] > Sent: Mon 4/24/2006 5:30 PM > To: Maven Users List > Subject: Re: Support for Multi-project Web Sites > > > > On 4/24/06, Vijay Shanker &l

RE: Support for Multi-project Web Sites

2006-04-25 Thread Vijay Shanker
Ryan, Could you please send me example of installing site skin using -updateReleaseInfo? Thanks, Vijay From: Ryan Wynn [mailto:[EMAIL PROTECTED] Sent: Mon 4/24/2006 5:30 PM To: Maven Users List Subject: Re: Support for Multi-project Web Sites On 4/24/06

RE: Support for Multi-project Web Sites

2006-04-25 Thread Vijay Shanker
Got it. syntax is mvn -DupdateReleaseInfo=true install Vijay From: Vijay Shanker [mailto:[EMAIL PROTECTED] Sent: Tue 4/25/2006 1:14 PM To: Maven Users List Subject: RE: Support for Multi-project Web Sites Ryan, Could you please send me example of

RE: Support for Multi-project Web Sites

2006-04-26 Thread Vijay Shanker
List Subject: Re: Support for Multi-project Web Sites On 4/24/06, Vijay Shanker <[EMAIL PROTECTED]> wrote: > Hi Ryan, > > I am facing the same problem while building reports for multiple modules. > Parent report does not include links of child modules' reports. > >

Re: Support for Multi-project Web Sites

2006-04-26 Thread Ryan Wynn
Ryan Wynn [mailto:[EMAIL PROTECTED] > Sent: Mon 4/24/2006 5:30 PM > To: Maven Users List > Subject: Re: Support for Multi-project Web Sites > > > > On 4/24/06, Vijay Shanker <[EMAIL PROTECTED]> wrote: > > Hi Ryan, > > > > I am facing the same problem wh

RE: Support for Multi-project Web Sites

2006-04-26 Thread Vijay Shanker
[mailto:[EMAIL PROTECTED] Sent: Wed 4/26/2006 11:13 AM To: Maven Users List Subject: Re: Support for Multi-project Web Sites Hi Vijay, Did you add the following to your parent site.xml? ... org.apache.maven.skins maven-default-skin 1.0-SNAPSHOT

RE: Support for Multi-project Web Sites

2006-05-02 Thread RobJac
org.apache.maven.plugins maven-site-plugin 2.0-SNAPSHOT en,fr Please let me know if i am doing some thing wrong here. or could some one who has got this right send me a sample of your pom.xml and site.xml for your parent project. Than

Re: Support for Multi-project Web Sites

2006-04-20 Thread Alexandre Poitras
${modules} should definitely work. What your site.xml file looks like? On 4/20/06, Ryan Wynn <[EMAIL PROTECTED]> wrote: > I haven't been able to find maven2 documentation on how to create a > parent site that automatically includes links to all the modules under > it. Has a solution for this been

Re: Support for Multi-project Web Sites

2006-04-20 Thread Ryan Wynn
On 4/20/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: > ${modules} should definitely work. What your site.xml file looks like? The parent site.xml is pretty basic. The reports are showing but no links to the modules. PCS imag

Re: Support for Multi-project Web Sites

2006-04-20 Thread Ryan Wynn
On 4/20/06, Ryan Wynn <[EMAIL PROTECTED]> wrote: > On 4/20/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: > > ${modules} should definitely work. What your site.xml file looks like? > > The parent site.xml is pretty basic. The reports are showing but no > links to the modules. > > > > >

Re: Support for Multi-project Web Sites

2006-04-20 Thread Aaron Freeman
I tried using ${modules} in the site.xml of my parent project, just like you did, but it didn't seem to do anything for me either. On 4/20/06, Ryan Wynn <[EMAIL PROTECTED]> wrote: > On 4/20/06, Ryan Wynn <[EMAIL PROTECTED]> wrote: > > On 4/20/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: > > >

Re: Support for Multi-project Web Sites

2006-04-21 Thread Geoffrey De Smet
$modules and etc are for the next release of the site plugin I believe Aaron Freeman wrote: I tried using ${modules} in the site.xml of my parent project, just like you did, but it didn't seem to do anything for me either. On 4/20/06, Ryan Wynn <[EMAIL PROTECTED]> wrote: On 4/20/06, Ryan Wy

Re: Support for Multi-project Web Sites

2006-04-21 Thread Alexandre Poitras
Yeah I think you're right! Now that you mention it I think you have to use the lastest snapshot built which is way better anyway. The site plugin hasn't seen a new release in a long time. Just add the Maven snapshots repository to your pom and declares the use of the 2.0-SNAPSHOT site plugin. On 4

Re: Support for Multi-project Web Sites

2006-04-21 Thread Ryan Wynn
On 4/21/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: > Yeah I think you're right! Now that you mention it I think you have to > use the lastest snapshot built which is way better anyway. The site > plugin hasn't seen a new release in a long time. Just add the Maven > snapshots repository to you

Re: Support for Multi-project Web Sites

2006-04-21 Thread Henry S. Isidro
On Friday 21 April 2006 11:38 pm, Ryan Wynn wrote: > Do you know if I need to install the skin manually and if so how I can do > it? > > Thanks. Get it from here: https://svn.apache.org/repos/asf/maven/skins/trunk and then install it. HTH, Henry ---

Re: Support for Multi-project Web Sites

2006-04-21 Thread Ryan Wynn
On 4/21/06, Henry S. Isidro <[EMAIL PROTECTED]> wrote: > On Friday 21 April 2006 11:38 pm, Ryan Wynn wrote: > > Do you know if I need to install the skin manually and if so how I can do > > it? > > > > Thanks. > > > Get it from here: https://svn.apache.org/repos/asf/maven/skins/trunk and then > ins

Re: Support for Multi-project Web Sites

2006-04-21 Thread Elliot Metsger
Hi - See http://www.nabble.com/Running-maven-site-plugin-from-svn-p3953978.html and see if that doesn't help! Elliot Ryan Wynn wrote: On 4/21/06, Henry S. Isidro <[EMAIL PROTECTED]> wrote: On Friday 21 April 2006 11:38 pm, Ryan Wynn wrote: Do you know if I need to install the skin manua

Re: Support for Multi-project Web Sites

2006-04-21 Thread Ryan Wynn
On 4/21/06, Elliot Metsger <[EMAIL PROTECTED]> wrote: > Hi - > > See > http://www.nabble.com/Running-maven-site-plugin-from-svn-p3953978.html > and see if that doesn't help! > Thanks, that help worked. I needed to use install with -updateReleaseInfo=true instead of install-file.