Working in offline mode

There might be situations where a Maven project needs to be built without access to the Internet. Let us see how Maven supports this, as well as the caveats.

How to do it...

  1. Open a project that you want to build offline.
  2. Run the following command:
    mvn dependency:go-offline 
    
  3. Observe the output:
    How to do it...
  4. Run the following command:
    mvn –o clean package
    

Observe that the build is completed successfully without any network connection.

How it works...

The go-offline goal of the Maven Dependency plugin downloads all the required dependencies and plugins for the project, based on the pom file. The –o option tells Maven to work offline and not check ...

Get Apache Maven Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.