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-11 Thread Dan Tran
for the 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

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? btw

Re: MAVEN 2.0 and SCM-SVN

2007-03-11 Thread Dan Tran
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 you back to maven

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-10 Thread Phill Moran
- 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 code is usually used to do a checkout in order

Re: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Dan Tran
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 release from an SCM tag. It's not at all clear what you

RE: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Phill Moran
is I have not configured or told mvn to move the source to the src dir I am still preplexed. -Original 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

Re: MAVEN 2.0 and SCM-SVN

2007-03-10 Thread Dan Tran
to move the source to the src dir I am still preplexed. -Original 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

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
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 response

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 sourceDirectory and the others to

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.