こんにちは、プロジェクトのイメージを圧縮するためのアセンブリを作成し、それを pom ファイルのパッケージ フェーズにフックしました。ここでの問題は、「クリーン コンパイル パッケージ」を実行すると、必要な zip ファイルとファイル -jar- が作成されることです。作成したくないwith-dependencies.jar。このjarファイルの生成を抑制するにはどうすればよいですか
これが私のポンです
<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 (5 MB が必要)、CATImageExport2-1.0-SNAPSHOT-jar-with-dependencies.jar (58 MB これは、生成を除外したい依存関係にあります)