Mavenがわかりません。antを使用する方が良いですが、(依存関係の有無にかかわらず)jarを作成でき、jarの近くにbat runnerスクリプトをコピーできましたが、このjarとこのbatを使用してzipを作成したいと思います。だから私はアセンブリプラグインを使用してBUUUMを取得します!!!! CADAAAM!私の構成では、jarパッケージと並行して実行されるようになっています。私はアセンブリファイルを書きました:
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>jg</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.directory}/classes</directory>
<outputDirectory>/123</outputDirectory>
<excludes>
<exclude>assembly/**</exclude>
<exclude>runners/**</exclude>
</excludes>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<useProjectArtifact>true</useProjectArtifact>
<unpack>true</unpack>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
</assembly>
次に、maven-assembly-pluginをバインドしました。
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<inherited>false</inherited>
<configuration>
<archive>
<manifest>
<mainClass>by.dev.madhead.lzwj.Main</mainClass>
<addClasspath>true</addClasspath>
</manifest>
</archive>
<descriptors>
<descriptor>src/main/resources/assembly/assembly.xml</descriptor>
<!-- <descriptorRef>jar-with-dependencies</descriptorRef> -->
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
今私はこれを取得します./target
:
- runner.bat
- jar_without_dependencies.jar(maven-jar-pluginからのものですよね?)
- jar_without_dependencies.jar
そして3番目は私を怒らせます。これには次 のものが含まれます。123ディレクトリには次のものが含まれます。
ご覧のとおり、依存関係が解凍されたjar、EXCLUDED DIRS !!!!、および実際に必要なdir 123が含まれています(ああ!アセンブリプラグインがそれを実行しました!!!)。
依存関係のあるjarを取得し、クラスパスでマニフェストを修正したいと思います。オプションとして、依存関係が解凍されたjarが必要です(アセンブリで知って<unpack>false</unpack>
いますが、動作させることができません)。/ 123を/に変更して、除外ファイルなしのNORMALJARを取得したい!!! jarとzipをビルドするために2つの別々のタスクが必要です(mavenのプロファイルで実行されますか??)antの場合と同様に、次のように記述します。
<target name="jar_with_deps" depends-on="compile">
<jar>
here i copy classes (excluding some dirs with runner script), and build manifest
</jar>
<copy>
copy bat file from src/main/resources/runner/runner.bat
</copy>
</target>
<target name="zip" depends-on="jar_with_deps">
<zip>
Get jar from previous target, get runner.bat. Put them in zip
</zip>
</target>
表現力が強すぎるとすみませんが、この暗黙の振る舞いには本当に腹を立てています。私は本当にこれで立ち往生しています。