Re: Need help.. How to configure POM for multi-module checkout

2019-03-25 Thread garym
Yeah, that's a good idea... On 2019/03/24 14:38:25, Kyle Marek wrote: > You can arbitrarily switch to other tags and branches with submodules. > It is just a simple `git checkout X` from the submodule's directory. > > -Kyle > > On 3/24/19 9:51 AM, ga...@oedata.com wrote: > > Hi Nick, > > >

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread garym
Hi Karl, Thank you for the suggestion to use maven-shade/maven-assembly-plugin(s). I was planning to use them, but haven't gotten around to them yet. I was hung up on the checkout/build thing. :- Maybe on Tuesday. The libraries are in 7 modules to manage the development cycle, specifically

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread Karl Heinz Marbaise
Hi Gary, On 24.03.19 17:55, ga...@oedata.com wrote: Hi Nick, Thanks for the questions, I'll try to explain. The parent pom aggregates a library (jar) from different and sometimes interdependent modules. The parent pom checks out the module sources with the poms and compiles them into a

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread garym
(until you update the > reference). > > Would that be a viable option for your purpose(s) ? > > Nick > > > From: garym@ > Sent: Sunday, March 24, 2019 1:26 AM > To: users@maven.apache.org > Subject: Re: Need help.. How to configur

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread Kyle Marek
You can arbitrarily switch to other tags and branches with submodules. It is just a simple `git checkout X` from the submodule's directory. -Kyle On 3/24/19 9:51 AM, ga...@oedata.com wrote: > Hi Nick, > > Thank you for that suggestion. That was also suggested on stackoverflow by > Karl. That

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread garym
Hi Nick, Thank you for that suggestion. That was also suggested on stackoverflow by Karl. That method is better suited for static-ish configurations. I need a BOM type system where I can dynamically switch between tags and branches for different modules, much like clear case. I'll be moving

Re: Need help.. How to configure POM for multi-module checkout

2019-03-24 Thread Nikki Novak
From: garym@ Sent: Sunday, March 24, 2019 1:26 AM To: users@maven.apache.org Subject: Re: Need help.. How to configure POM for multi-module checkout Hi Karl, Thank you for replying on mail server. and thanks for sending me the links to you project poms. They look

Re: Need help.. How to configure POM for multi-module checkout

2019-03-23 Thread Kyle Marek
Not sure that it will help with version number matches, but you could also use Git submodules to bring multiple repositories together in a single tree. See: https://git-scm.com/book/en/v2/Git-Tools-Submodules On 3/23/19 9:26 PM, ga...@oedata.com wrote: > Hi Karl, > > Thank you for replying on

Re: Need help.. How to configure POM for multi-module checkout

2019-03-23 Thread garym
Hi Karl, Thank you for replying on mail server. and thanks for sending me the links to you project poms. They look awesome. The is a difference between your projects and my situation. Your projects all the modules reside in the same repository. In my case, they reside in different

Re: Need help.. How to configure POM for multi-module checkout

2019-03-23 Thread Karl Heinz Marbaise
Hi, I will give you the same answer as on StackOverflow. The way you are going sounds wrong... As I already suggested is the way to go creating a multi module build which comprises of several modules which is located within a single Git repository. this can be build by using a single command.

Need help.. How to configure POM for multi-module checkout

2019-03-23 Thread Gary M
Hi, I need some help with scm checking out multiple modules and building them. I have several projects I'm consolidating into a single jar. Reactor checks for module poms before generate-sources executes. How do I fix this issue ? thanks.. g POM sample to give you an idea of what I've done.