嗨,我创建了一个程序集来压缩项目的图像,并将它连接到我的 pom 文件中的 package 阶段,这里的问题是当我执行“clean compile package”时,它正在创建我需要的 zip 文件以及一个文件 -jar- with-dependencies.jar 我不想创建。我怎样才能抑制生成这个jar文件
这是我的pom
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<descriptors>
<descriptor>
src/main/assembly/cat_image_resources_assembly.xml
</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>cat_image_resources</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<!-- appendAssemblyId>false</appendAssemblyId>
<Change the name to standard name >
<finalName>renameImages</finalName-->
</configuration>
</execution>
</executions>
</plugin>
装配文件 cat_image_resources_assembly.xml
<assembly>
<id>cat_image_resources</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>${artifactId}</baseDirectory>
<fileSets>
<fileSet>
<directory>exportedImages</directory>
<outputDirectory/>
<fileMode>644</fileMode>
</fileSet>
</fileSets>
</assembly>
它正在生成以下文件
CATImageExport2-1.0-SNAPSHOT-cat_image_resources.zip(需要 5mb),CATImageExport2-1.0-SNAPSHOT-jar-with-dependencies.jar(58mb 这是我想要排除生成的依赖项)