priya
priya

Reputation: 26679

How do I override maven clean goal to remove additional folders

maven-clean-plugin removes target folder by default, but I would also like it to remove some additional application specific folders like 'logs', how should I do this?

Upvotes: 4

Views: 2027

Answers (1)

Sri Sankaran
Sri Sankaran

Reputation: 8310

See the explanation provided in the plugin docs: http://maven.apache.org/plugins/maven-clean-plugin/examples/delete_additional_files.html

Upvotes: 4

Related Questions