【发布时间】:2020-10-19 14:34:15
【问题描述】:
我的 pom.xml 文件中有这段代码
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<finalName>elcordelaciutat-${project.version}</finalName>
<packagingExcludes>***/*.pom</packagingExcludes>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
但我有这个错误:Element packagingExcludes is not allowed here
【问题讨论】:
标签: maven maven-plugin maven-assembly-plugin