RE: how to create a site in maven 2

2005-11-11 Thread Yann Le Du
site (e.g. to > create the surefire reports does it run the tests all over again)? > > ..David.. > > > > From: David Sag [mailto:[EMAIL PROTECTED] > Sent: Friday, November 11, 2005 3:00 AM > To: Maven Users List > Subject: Re: how t

RE: how to create a site in maven 2

2005-11-11 Thread David Jackman
List Subject: Re: how to create a site in maven 2 On a related topic, We plan on using Continuum to do our regular builds and as part of that I want it to generate the project site on each build. Now, as far as I can see, none of the standard lifecycle phases include site generation. How are

Re: how to create a site in maven 2

2005-11-11 Thread Paul Spencer
1) cd to the project directory. It will contain the file pom.xml. 2) execute the following command to generate the site. mvn site 3) The site will be created in the target directory target/docs/index.html Paul Spencer Maruf Aytekin wrote: Hello All, I am pretty new to maven just tryin

Re: how to create a site in maven 2

2005-11-11 Thread David Sag
On a related topic, We plan on using Continuum to do our regular builds and as part of that I want it to generate the project site on each build.  Now, as far as I can see, none of the standard lifecycle phases include site generation. How are other people generating their project sites using ma

RE: how to create a site in maven 2

2005-11-11 Thread Maruf Aytekin
ginal Message- From: Stephen Cowx [mailto:[EMAIL PROTECTED] Sent: Friday, November 11, 2005 11:25 AM To: Maven Users List; Maruf Aytekin Subject: Re: how to create a site in maven 2 Hi run C:\TestMaven\amqxtras>mvn site from the c:\TestMaven\amqxtras directory the "archetype:create

Re: how to create a site in maven 2

2005-11-11 Thread Stephen Cowx
Hi run C:\TestMaven\amqxtras>mvn site from the c:\TestMaven\amqxtras directory the "archetype:create" goal and its arguments just create the basic project structure. the "site" goal creates the website good luck Maruf Aytekin wrote: Hello All, I am pretty new to maven just trying it

Re: how to create a site in maven 2

2005-11-11 Thread Brett Porter
The second one is designed to run from within the original directory, I think. On 11/11/05, Maruf Aytekin <[EMAIL PROTECTED]> wrote: > Hello All, > I am pretty new to maven just trying it for my company. I hve a problem > with creating site. I know that it'd be something so simple. Apologies > for

Re: how to create a site in maven 2

2005-11-11 Thread Paul Spencer
1) cd to the project directory. It will contain the file pom.xml. 2) execute the following command to generate the site. mvn site 3) The site will be created in the target directory target/docs/index.html Paul Spencer Maruf Aytekin wrote: Hello All, I am pretty new to maven just tryin

how to create a site in maven 2

2005-11-11 Thread Maruf Aytekin
Hello All, I am pretty new to maven just trying it for my company. I hve a problem with creating site. I know that it'd be something so simple. Apologies for taking your time. My problem is following; I first created a maven project amqxtras with the following command C:\TestMaven> mvn archetype:c