RE: MAVEN 2.0 and SCM-SVN

2007-03-11 Thread Phill Moran
Gotcha thanks. Maybe I will write this up and post it for others to see since it side tracked me for a few days -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: March 11, 2007 1:10 PM To: Maven Users List Subject: Re: MAVEN 2.0 and SCM-SVN ah, what you want is a CI

Re: MAVEN 2.0 and SCM-SVN

2007-03-11 Thread Dan Tran
Maven Users List Subject: Re: MAVEN 2.0 and SCM-SVN I am very confused ehy you want to checkout source to src/main? Isn't it already there? btw, you have not explained about your usecase why you want to use scm:checkout rather than direct svn checkout. With this, I would like to perfer

RE: MAVEN 2.0 and SCM-SVN

2007-03-11 Thread Phill Moran
been through most of the English articles Phill -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: March 11, 2007 11:53 AM To: Maven Users List Subject: Re: MAVEN 2.0 and SCM-SVN I am very confused ehy you want to checkout source to src/main? Isn't it already there?

Re: MAVEN 2.0 and SCM-SVN

2007-03-11 Thread Dan Tran
Storing revision in 'scm.revision' project property. > > [INFO] > > > > -- > > -- > > [INFO] BUILD SUCCESSFUL > > [INFO] > > ---

RE: MAVEN 2.0 and SCM-SVN

2007-03-11 Thread Phill Moran
Okay I'll recheck my structure but how does the source code get from target/checkout to src/main ? -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: March 11, 2007 1:51 AM To: Maven Users List Subject: Re: MAVEN 2.0 and SCM-SVN if you configure maven correctly

Re: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Dan Tran
jBoss - nothing is easy - lol) Let me know your thoughts and thanks for this help Sincerely, Phill -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: March 11, 2007 1:01 AM To: Maven Users List Subject: Re: MAVEN 2.0 and SCM-SVN there are JIRA filed against odd respons

RE: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Phill Moran
- nothing is easy - lol) Let me know your thoughts and thanks for this help Sincerely, Phill -Original Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: March 11, 2007 1:01 AM To: Maven Users List Subject: Re: MAVEN 2.0 and SCM-SVN there are JIRA filed against odd

Re: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Dan Tran
Dan Tran [mailto:[EMAIL PROTECTED] Sent: March 10, 2007 12:45 PM To: Maven Users List Subject: Re: MAVEN 2.0 and SCM-SVN why do you need to do scm:checkout at validate phase? is n't source checkedout by scm:bootstrap already validated? take it out and try again -D On 3/9/07, Phill M

RE: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Phill Moran
inal Message- From: Dan Tran [mailto:[EMAIL PROTECTED] Sent: March 10, 2007 12:45 PM To: Maven Users List Subject: Re: MAVEN 2.0 and SCM-SVN why do you need to do scm:checkout at validate phase? is n't source checkedout by scm:bootstrap already validated? take it out and try a

Re: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Dan Tran
o offense intended ;) Phill _____ FromMax Bowsher <[EMAIL PROTECTED]> Subject Re: MAVEN 2.0 and SCM-SVN DateFri, 09 Mar 2007 09:59:37 GMT The thing you're missing is that the SCM code is usually used to do a checkout in order to create a *temporary* working copy in order to build a

RE: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Phill Moran
preciated Message to Dan Tran - Not useless that was a late night tired comment no offense intended ;) Phill _____ FromMax Bowsher <[EMAIL PROTECTED]> Subject Re: MAVEN 2.0 and SCM-SVN DateFri, 09 Mar 2007 09:59:37 GMT The thing you're missing is that the SCM

Re: MAVEN 2.0 and SCM-SVN

2007-03-09 Thread Max Bowsher
Phill Moran wrote: > This could be a dumb questions but why does maven SCM default to checkout to > /target/checkout? I would expect it to go to a dir under src/java. It also > seems > that the SCM plug-in does not allow this to be overridden. I have tried > setting > and the others to no avail.

Re: MAVEN 2.0 and SCM-SVN

2007-03-08 Thread Dan Tran
By convention, any thing generated by the build execution should be placed under ${project.build.directory) ( ie target) scm:checkout is not the exception either. A good use case of this, maven release:perform which checkouts a know tag into target/checkout and performs the build from there. Aft