Car project and truck project are independent of each other. I have one person working on the truck project and another person working on the car project. I have a nightly built running everyday to compile each project and build the maven site. Sometimes the person responsible for the truck project forgets to check in a file and the truck project fail to compile which in turns prevent the maven site from being built thus preventing the car project person from using maven.
I still want to see the maven site even though either one of the project has failed to compile. Can the --fail-at-end switch be used in this case? Ashley -----Original Message----- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 1:02 PM To: Maven Users List Subject: Re: Independent Subprojects in Maven I think you want the --fail-at-end switch. However, if trunk depends on car, it will still not build if car doesn't. Note that if it is just the tests failing, you can run "mvn compile" from the top level and all projects will be compiled, then you can proceed to test, etc. - Brett On 11/8/05, Ashley Hurkoo <[EMAIL PROTECTED]> wrote: > > I am trying sub project to my main project. For example, I have a > rental > project(main) and I want to add a truck project and a car project > which are independent of the Main project. The problem I am having is > when I build maven and the car project does not compile, the truck > project gets affected and maven does not build. > > Can anyone help me with that? > > > --------------------------------------------------------------------- > 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
