Is it possible to actually build a maven project containing java code to be built once and the binaries can be shared?
Problem: The project I am trying to build woul
If you use maven, a mvn install will install your binary into your ${home}/.m2 folder. Those binary will be available for all other maven job that will run on the same machine.
If you need to share your binary between multiple machine, you can deploy your jars to a repository, like nexus or artifactory.