All Questions
Tagged with maven-lifecycle maven-clean-plugin
2 questions
0
votes
1
answer
376
views
What is the difference between mvn pre-clean / clean / post-clean?
what is the difference between these 3 commands: mvn pre-clean / clean / post-clean? Pre and post are unusual to be used. We go straight forward with mvn clean but why?
0
votes
0
answers
153
views
Clean lifecycle in Travis CI Maven build
When I review .travis.yml configs I very often see mvn clean verify or mvn clean install.
Is there any point in invoking clean lifecycle in the Travis CI builds when it is first invocation of mvn in ...