以下は現在、私の依存関係を取得し、それらを新しく作成された lib ディレクトリに配置します。
<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>