現在、以下は現在私の依存関係をとり、新しく作成したlibディレクトリに配置しています。mvnアセンブリで
<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
質問:どのように1ファイルを除外するように変更できますか?
次は動作しません:
<dependencySets>
<dependencySet>
<outputDirectory>lib</outputDirectory>
<scope>runtime</scope>
<excludes>
<exclude>my_program-0.0.1-SNAPSHOT.jar</exclude>
</excludes>
</dependencySet>
</dependencySets>
http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/including-and-excluding-artifacts.html –