Re: mvn site and multprojects

2007-10-06 Thread Chuck Canning
To get this to work for us, we needed to have a site tag under distributionManagement in the parent pom and you need to explicitly do a mvn site:site site:deploy to properly get a site to work. Hope this helps. On 10/5/07, Holt, Jack C. [EMAIL PROTECTED] wrote: I tried using mvn site:stage and

Re: How to deploy to a snapshot site?

2007-10-06 Thread Chuck Canning
You could also have one profile for snapshots and another profile for release. Also, since you have to update the POM for the release version vs snapshot, couldn't you also change the site url? On 10/4/07, Wendy Smoak [EMAIL PROTECTED] wrote: On 10/3/07, Chris Helck [EMAIL PROTECTED] wrote:

Re: Running test cases fails

2007-09-16 Thread Chuck Canning
You need to go to the $project/target/sure-fire?? directories to seee the results from the tests. You probably have something included in your eclipse project that is not in your pom that is required. On 9/15/07, Suneet Shah [EMAIL PROTECTED] wrote: Hello, I am new to maven and am having a

Re: Overriding the local repository

2007-08-24 Thread Chuck Canning
Use your settings.xml and add something like this: settings localRepositorypath to my local repository/localRepository /settings On 8/24/07, Wendy Smoak [EMAIL PROTECTED] wrote: On 8/24/07, Howard Lewis Ship [EMAIL PROTECTED] wrote: Is there a way to control what the local repository is?

Re: How to compile generated java code from test phase ?

2007-08-20 Thread Chuck Canning
I think the best way would be to create a plugin for your code generator and have it add the output directory to the test sources in the project object. On 8/19/07, Wayne Fay [EMAIL PROTECTED] wrote: I'm honestly not sure what the best/right approach would be in this situation. Off the top of