resources - How to copy directory using maven copy resoures plugin -


i have referred maven documentation here https://maven.apache.org/plugins/maven-resources-plugin/examples/include-exclude.html understand including whatever files need. has mentioned including files. how can copy directories , files inside specific directory using maven resources plug-in?

try without specifying includes , excludes picks directories , files inside resources directory.

<resources>     <resource>         <directory>src/main/resources</directory>     </resource> </resources> 

Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -