Suppose
file1.txt, file2.txt under src/main/resource/folder1/folder2/
and file3.txt under src/main/resource/folder2/
I want all txt files under target/testFolder/
Can anyone tell me how to do this? Thanks
feedback
|
|
Dont know why you dont want to go with the default director structure. but below link and snippet should help you out. http://maven.apache.org/plugins/maven-resources-plugin/examples/resource-directory.html
Notice
You can configure your own directories in here. | |||
|
feedback
|
|
You might want to create a folder And since you are creating this folder structure anyhow, simply move those 3 files in the same folder and Maven will work its magic. EDIT: For more info, see the Maven Standard Directory Layout Introduction. | ||||
|
feedback
|
|
On a project we worked on, we followed the Standard Directory Layout, but we had configuration files in subdirectories under
which we wanted to copy over to under
Hope this helps. | |||
|
feedback
|