Reputation: 3677
I have just started work on an existing Java web application and I find that it takes about 5-10 minutes for the application to compile and run. What are the common ways to reduce this time? It is my first time working on an application of this size. I am used to coding and testing incrementally and find this wait unbearable.
Any help would be appreciated.
EDIT: I am using Maven as my build system.
Upvotes: 5
Views: 948
Reputation: 597106
Differentiate the build, and building during development.
Thus it won't matter how long does it take to make the build.
As of how to reduce the build-time, it depends on the build-technology you are using.
Upvotes: 5