RE: A beginner´s question

2007-05-15 Thread Raúl Arabaolaza Barquín
: Siegmann Daniel, NY [mailto:[EMAIL PROTECTED] Enviado el: martes, 15 de mayo de 2007 23:33 Para: Maven Users List Asunto: RE: A beginner´s question If I am understanding your point correctly, it is ok if the build is broken because you will not be able to deploy artifacts until it is fixed? What

RE: A beginner´s question

2007-05-15 Thread Siegmann Daniel, NY
anges. ~Daniel -Original Message- From: Ravi Luthra [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 15, 2007 4:08 PM To: Maven Users List Subject: Re: A beginner´s question It isn't always a bad thing to just check in changes no matter what. I mean you still benefit from Maven'

Re: A beginner´s question

2007-05-15 Thread Ravi Luthra
It isn't always a bad thing to just check in changes no matter what. I mean you still benefit from Maven's versioning so if you find yourself barking up the wrong tree with a bunch of bad commits, your users will still be happy using the stable or earlier versions of your code. The nice thing abou

RE: A beginner´s question

2007-05-15 Thread Siegmann Daniel, NY
<> I expect that your developers will sometimes wish to run the unit tests without committing the changes. Therefore having the commit be automatic is undesirable. Heck, I have occasionally deployed a snapshot from my machine before committing changes. If you want to commit after running tests

RE: A beginner´s question

2007-05-15 Thread Raúl Arabaolaza Barquín
before make a decision. Best Regards,Raúl -Mensaje original- De: Siegmann Daniel, NY [mailto:[EMAIL PROTECTED] Enviado el: martes, 15 de mayo de 2007 18:58 Para: Maven Users List Asunto: RE: A beginner´s question <<1º Compile using the pom´s declared dependencies>>

RE: A beginner´s question

2007-05-15 Thread Raúl Arabaolaza Barquín
Users List Asunto: Re: A beginner´s question You are probably looking for Maven in combination with a Continuous Integration server. There's a nice list here [1] but its missing a few newer packages like Hudson [2] and Bamboo [3]. [1] http://docs.codehaus.org/display/DAMAGECONTROL/Conti

RE: A beginner´s question

2007-05-15 Thread Siegmann Daniel, NY
<<1º Compile using the pom´s declared dependencies>> Basic Maven2 functionality. Use the "compile" phase. This will download dependencies from the remote repository into your local repository, and execute the goal "compile:compile" [1] <<2º Execute some functional test>> Maven2 can execute JUn

Re: A beginner´s question

2007-05-15 Thread Wayne Fay
You are probably looking for Maven in combination with a Continuous Integration server. There's a nice list here [1] but its missing a few newer packages like Hudson [2] and Bamboo [3]. [1] http://docs.codehaus.org/display/DAMAGECONTROL/Continuous+Integration+Server+Feature+Matrix [2] http://h

A beginner´s question

2007-05-15 Thread Raúl Arabaolaza Barquín
Hello: I´m just begining using maven and have a little question about it´s features. Let´s suppose I have a developers team working simultaneously in the same project, I want maven to automate the following process: 1º Compile using the pom´s declared dependencies