Maven を使用して、カスタム拡張子 (.bar) を持つアーカイブ ファイルを作成したいと考えています。クラス ファイルと XML ファイルを含める必要があります。
以下を試しましたが、完了できませんでした。
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<target>
<echo message="generating document workflow .bar file" />
**I need to copy a .class file and an xml file then build the .bar file.**
<!-- Create a bar file. -->
<zip basedir="${project.build.outputDirectory}" destfile="${project.build.outputDirectory}/document-workflow.bar" />
</target>
</configuration>
</execution>
</executions>
</plugin>
案内していただけますか?
私には別の要件があります。基本的に、jar にコピーするクラス ファイルは、パッケージ構造ではなくルートにある必要があります。