Maven

How to clean project with Maven example

A Maven based project uses the target folder to place the output of a project’s build. Before the deployment of a project, it is a good practice to clean every file created by the previous build.

In this example, we use Apache Maven 3.1.1 on a Windows 7 platform.

In order to clean our project, we must first navigate to its folder, using the terminal (Linux or Mac) or the command prompt (Windows). Then, we must issue the following command:
 
 

mvn clean

A sample output of the command is shown below:

mvn_clean_cmd_WM

This command is responsible for removing all files generated by the previous build. Thus, every file inside the target folder will be removed.

Finally, it is a good practice to use Maven’s clean command along with Maven’s package command as following:

mvn clean package

This command first, cleans our project by removing everything inside the target folder and then, packages our code in a distributable format, such as jar.

This was a tutorial on how to clean a project, using Apache Maven.

Want to know how to develop your skillset to become a Java Rockstar?

Join our newsletter to start rocking!

To get you started we give you our best selling eBooks for FREE!

 

1. JPA Mini Book

2. JVM Troubleshooting Guide

3. JUnit Tutorial for Unit Testing

4. Java Annotations Tutorial

5. Java Interview Questions

6. Spring Interview Questions

7. Android UI Design

 

and many more ....

 

Receive Java & Developer job alerts in your Area

I have read and agree to the terms & conditions

 

Sotirios-Efstathios Maneas

Sotirios-Efstathios (Stathis) Maneas is a PhD student at the Department of Computer Science at the University of Toronto. His main interests include distributed systems, storage systems, file systems, and operating systems.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button