I\'m using maven in my project and I need to run the build in a non-internet-access machine.
When I test my project build everything is working, bu
Before you go offline run the following:
mvn dependency:go-offline
That will download all your dependencies and plugins that you need to build your project into ~/.m2/repository.
Once you've run that you can now build your project offline using the '-o' flag:
mvn install -o