Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Joachim Durchholz
Am 24.01.2013 05:39, schrieb Ron Wheeler: You manually put the jars in your Maven repo through its manual upload procedure with some version number (nice if it relates to the version that the authors gave them) and reference them as dependencies. That's 13 jars to be built from their sources,

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Ron Wheeler
On 24/01/2013 3:34 AM, Joachim Durchholz wrote: Am 24.01.2013 05:39, schrieb Ron Wheeler: You manually put the jars in your Maven repo through its manual upload procedure with some version number (nice if it relates to the version that the authors gave them) and reference them as dependencies.

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Stephen Connolly
On Thursday, 24 January 2013, Joachim Durchholz wrote: Am 24.01.2013 05:39, schrieb Ron Wheeler: You manually put the jars in your Maven repo through its manual upload procedure with some version number (nice if it relates to the version that the authors gave them) and reference them as

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Joachim Durchholz
Am 24.01.2013 16:35, schrieb Stephen Connolly: What you want to do is create a series of shim projects for each of these external libs, If you mean a just-pass-it-through-unchanged-already project with shim project, then yes that's what I want to do. and then just have your CI server roll

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Joachim Durchholz
Am 24.01.2013 15:00, schrieb Ron Wheeler: On 24/01/2013 3:34 AM, Joachim Durchholz wrote: Am 24.01.2013 05:39, schrieb Ron Wheeler: You manually put the jars in your Maven repo through its manual upload procedure with some version number (nice if it relates to the version that the authors gave

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Ron Wheeler
On 24/01/2013 11:54 AM, Joachim Durchholz wrote: Am 24.01.2013 15:00, schrieb Ron Wheeler: On 24/01/2013 3:34 AM, Joachim Durchholz wrote: Am 24.01.2013 05:39, schrieb Ron Wheeler: You manually put the jars in your Maven repo through its manual upload procedure with some version number (nice

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Joachim Durchholz
Am 24.01.2013 18:53, schrieb Ron Wheeler: On 24/01/2013 11:54 AM, Joachim Durchholz wrote: Am 24.01.2013 15:00, schrieb Ron Wheeler: On 24/01/2013 3:34 AM, Joachim Durchholz wrote: Am 24.01.2013 05:39, schrieb Ron Wheeler: You manually put the jars in your Maven repo through its manual

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Ron Wheeler
Seems a pity not to just set it up right at the start and then your life with maven would be harmonious. What I suggested is a way to use maven in a way that everyone here could help you and your builds would be very simple. Stephen seems to be giving you a solution that fits with what you

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Joachim Durchholz
Am 24.01.2013 19:53, schrieb Ron Wheeler: Seems a pity not to just set it up right at the start and then your life with maven would be harmonious. What I suggested is a way to use maven in a way that everyone here could help you and your builds would be very simple. Sorry, I must have been

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Stephen Connolly
If you are either replacing the (empty) jar with your real jar in the package phase of your 13 projects without source, And with the disclaimer that we don't like this way and prefer the MRM + simple shell script to do the mvn deploy:deploy-file, but understand your needs, you should be ok Note

Re: Best way to retrieve multiple subsets from SVN?

2013-01-24 Thread Joachim Durchholz
Am 24.01.2013 21:23, schrieb Stephen Connolly: If you are either replacing the (empty) jar with your real jar in the package phase of your 13 projects without source, Ah, good to know. I had intended to put that into an earlier phase, but of course the compiler will recreate the jar.

Best way to retrieve multiple subsets from SVN?

2013-01-23 Thread Joachim Durchholz
Hi all, I have a bunch of projects that need to extract files from an SVN repository as part of their build process. I need to make sure that all of them use the same SVN revision. It's initially determined as whatever the current HEAD is, but since HEAD might change anytime, I need a way to

Re: Best way to retrieve multiple subsets from SVN?

2013-01-23 Thread Manfred Nilsson
Hi I am going on a hunch here what your are trying to do, in my opinion this is poorly supported by maven currently (I however guess you could use the maven-release-plugin and create a tag but I am not entirely sure that this is something that maven should solve ?) in my experience it's

Re: Best way to retrieve multiple subsets from SVN?

2013-01-23 Thread Joachim Durchholz
Am 23.01.2013 13:44, schrieb Manfred Nilsson: Hi I am going on a hunch here what your are trying to do, in my opinion this is poorly supported by maven currently (I however guess you could use the maven-release-plugin and create a tag Creating an SVN tag? No, that's not the point at all. I

Re: Best way to retrieve multiple subsets from SVN?

2013-01-23 Thread Ron Wheeler
You are probably over-automating things at this point. I would suggest getting your maven builds running, go through a full release cycle and then look for ways to improve. A good thing to remember is: Thousands of products have been built with Maven; it is unlikely that you want to do

Re: Best way to retrieve multiple subsets from SVN?

2013-01-23 Thread Toolforger
Am 23.01.2013 21:08, schrieb Ron Wheeler: You are probably over-automating things at this point. I would suggest getting your maven builds running, go through a full release cycle and then look for ways to improve. A good thing to remember is: Thousands of products have been built with Maven;

Re: Best way to retrieve multiple subsets from SVN?

2013-01-23 Thread Ron Wheeler
On 23/01/2013 4:48 PM, Toolforger wrote: Am 23.01.2013 21:08, schrieb Ron Wheeler: You are probably over-automating things at this point. I would suggest getting your maven builds running, go through a full release cycle and then look for ways to improve. A good thing to remember is: Thousands