By default during the build process maven is removing the empty directories.
Do you know if a parameter can be specified in the pom to instruct maven to include empty directories in the generated target/test-classes folder?
|
|
|||
|
|
|
According to this ticket MRESOURCES-36, there should be a
For Maven versions which included an older version of the Resources plugin:
This originally came from the openejb-standalone |
|||||||
|
|
Why do you need empty folders under target/test-classes? On the other hand you can use the assembly plugin to create empty folders in zip/tar.gz files. Just create an entry in your assembly descriptor which references an existing folder (in this case src/main/resources/bin...
The above works for .tar.gz and zip files as well. The directoryMode above is only needed if you create .tar.gz files. The second possibility is to create an empty folder in your folder structure which is included with the assembly plugin (like zip, tar.gz etc.)...BTW: zip, tar.gz allow empty folders. |
|||||
|
|
We've usually got around this problem by including an empty placeholder file in any directories that we need to create but which have no useful content at build time. This also has the advantage that file formats (e.g. zip files) which don't allow the concept of empty directories will still create the right directory structure. |
|||
|
|