How to clean project with Maven
In Maven based project, many cached output existed in your “target” folder. When you want to build your project for deployment, you have to make sure clean all the cached output so that you are always get the latest for deployment. To clean your project cached output, issue this command : mvn clean See output… …