我的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
发布于 2020-10-22 19:57:37
packagingExcludes
不能appear anywhere in maven-assembly
。
和issues related to packagingExcludes
涉及像apache/maven-war-plugin
这样的项目,它确实声明了packagingExcludes
in WarMojo.java
因此,您可能没有使用maven-assembly
创建归档选项。
https://stackoverflow.com/questions/64429558
复制相似问题