sidlejinks
sidlejinks

Reputation: 709

Maven specific copy task

I'm a newbie in Maven and I would like to know. Is there any way I can write some task or plugin or something else for Maven in order to copy arbitrary (selected by myself) directories to classpath while building a simple Java SE project? Thank you in advance!

Upvotes: 1

Views: 1550

Answers (1)

saurav
saurav

Reputation: 3462

Its an inbuilt feature in maven as you can use maven-resources-plugin and set the goal to copy-resources.

For more you can have a look at maven specs for this plugin here.

Thanks

Upvotes: 1

Related Questions