Hi,
My project / repository is becoming quite large. There are a number of modules I could extract into external libraries (this is all git +
maven + J2SE) for reducing the code in the project and also because these libraries could be reused by other projects / people.
My issue is if I break my project up, building, deploying and managing dependencies becomes painful. I currently use
jenkins + artifactory for build / deployment.
The main headache would be for a release of the project I would need to change versions / build / deploy all of the changed dependent libraries first before the actual project release / build. Some libraries will be fairly static / not change much, but there are going to definitely be a handful which will evolve in parallel. The development can be designed in such a way to be compatible, just the overhead of build / release is my main problem.
Anyone out there that have or solved similar issues with larger or shared
java projects?
At the moment I'm pretty much looking into scripting or hand rolling something to analyse the dependencies and build / deploy everything, either in bash, but maybe gradle. But I kinda feel there must be better way as this must be a common issue with many larger projects / some reasonably ways of dealing with it.
Thanks for any help,
Jon