私はmavenアセンブリプラグインを使用して、次の構成を使用して2つのjarを結合しています。
<execution>
<id>Package jar with dependencies</id>
<phase>compile</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>${project.artifactId}-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
アセンブリプラグインで作成したJARをデプロイしたくないのですが、どうすればデプロイを停止できますか?