<mappings>
<mapping>
<directory>/opt/app/application/${project.artifactId}</directory>
<filemode>755</filemode>
<username>srhdp</username>
<groupname>srhdp</groupname>
<recurseDirectories>true</recurseDirectories>
<sources>
<source>
<location>../${project.artifactId}</location>
<excludes>
<exclude>**/pom.xml</exclude>
<exclude>**/target</exclude>
</excludes>
</source>
</sources>
</mapping>
</mappings>
这就是插件配置的样子。 我正在排除目标,但是当我安装软件包并且我使用递归目录时我仍然可以看到它,因为我需要将用户名和组名反映在软件包中的所有子文件夹中。
如何在使用递归目录时删除此目标文件夹true。