使用maven-remote-resources-plugin时包含一个空目录

时间:2019-02-21 07:59:33

标签: maven maven-remote-resources

我正在使用maven-remote-resources-plugin(v1.6.0),我需要在捆绑包中包含一些空目录。
当前,结果不包括空目录。
我在文档中寻找答案,但找不到插件配置的任何有用属性。

任何建议如何实现这种行为?
甚至有可能吗?(使用此课程工具)

谢谢。

我的资源目录结构:

resources\
--config\
----cfg1.json
----cgf2.json
--input\
----in1.txt
----in2.txt
--output\  

我正在使用:

<plugin>
     <artifactId>maven-remote-resources-plugin</artifactId>
     <version>1.6.0</version>
       <executions>
         <execution>
            <phase>process-test-sources</phase>
              <goals>
                 <goal>bundle</goal>
              </goals>
          </execution>
        </executions>
      <configuration>
        <includes>
          <include>**/*</include>
        </includes>
        <resourcesDirectory>${basedir}/resources</resourcesDirectory>
      </configuration>
    </plugin>

output目录不包括在内。

0 个答案:

没有答案