Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maven - how to include empty directories

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?

like image 545
mickthompson Avatar asked Apr 09 '10 07:04

mickthompson


5 Answers

According to this ticket MRESOURCES-36, there should be a <includeEmptyDirs> element, but only for Maven Resources Plugin 2.3.

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-resources-plugin</artifactId>
  <version>2.3</version>
  <configuration>
    <includeEmptyDirs>true</includeEmptyDirs>
  </configuration>
</plugin>

For Maven versions which included an older version of the Resources plugin:

Until this issue is fixed, here is a workaround I've been using successfully.
Add this plugin element into project/build/plugins in your pom.xml, and change the dir in the mkdir task.

You can have multiple <mkdir> elements for multiple directories. The mkdir task does nothing if the directory has already been copied by the resources plugin.

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-antrun-plugin</artifactId>
  <executions>
    <execution>
      <id>create-empty-directory</id>
      <phase>process-classes</phase>
      <goals>
        <goal>run</goal>
      </goals>
      <configuration>
        <tasks>
          <mkdir dir="${basedir}/target/classes/empty" />
        </tasks>
      </configuration>
    </execution>
  </executions>
</plugin>

This originally came from the openejb-standalone pom.xml in the openejb project.

like image 162
VonC Avatar answered Oct 08 '22 02:10

VonC


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...

<fileSet>
  <directory>src/main/resources/bin</directory>
  <outputDirectory>/logs</outputDirectory>
  <directoryMode>0755</directoryMode>
  <excludes>
    <exclude>*</exclude>
  </excludes>
</fileSet>

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.

like image 36
khmarbaise Avatar answered Oct 08 '22 02:10

khmarbaise


If it's not working for you can use Maven Resources Plugin 2.7.

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.7</version>
            <configuration>
                <includeEmptyDirs>true</includeEmptyDirs>
            </configuration>
        </plugin>
like image 29
Belkasmi Avatar answered Oct 08 '22 02:10

Belkasmi


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.

like image 2
Simon Nickerson Avatar answered Oct 08 '22 02:10

Simon Nickerson


I used the Assembly Plugin like khmarbaise suggested, but to get it to work I needed to use an Ant-style exclude to make sure that no files or directories crept into the archive:

<excludes>
    <exclude>**/*</exclude>
</excludes>
like image 1
jgibson Avatar answered Oct 08 '22 02:10

jgibson