8

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

  1. runner.bat
  2. jar_without_dependencies.jar(maven-jar-pluginからのものですよね?)
  3. 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>

表現力が強すぎるとすみませんが、この暗黙の振る舞いには本当に腹を立てています。私は本当にこれで立ち往生しています。

4

3 に答える 3

9

それが他の誰かを助ける場合に備えて、少なくとも私の基本的なニーズについては、これは非常に簡単であることがわかりました。私はすでにMavenShadeプラグインを使用して、すべての依存関係が含まれるjarを構築していました。

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-shade-plugin</artifactId>
  <version>2.4.1</version>
  <configuration></configuration>
  <executions>
    <execution>
      <phase>package</phase>
      <goals>
        <goal>shade</goal>
      </goals>
    </execution>
  </executions>
</plugin>

したがって、を実行mvn packageすると、target / MyApp-version.jarが生成されますが、MyApp-version.jarと他のファイル(READMEなど)を含むMyApp-version.zipが必要でした。そこで、Assemblyプラグインを追加します。

<plugin>
  <artifactId>maven-assembly-plugin</artifactId>
  <version>2.5.5</version>
  <configuration>
    <appendAssemblyId>false</appendAssemblyId>
    <descriptors>
      <descriptor>assembly.xml</descriptor>
    </descriptors>
  </configuration>
  <executions>
    <execution>
      <phase>package</phase>
      <goals>
        <goal>single</goal>
      </goals>
    </execution>
  </executions>
</plugin>

上記のブロックは、プラグインの動作方法assembly.xmlを構成するを参照しています。

<?xml version="1.0" encoding="utf-8"?>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
    <id>release</id>
    <formats>
        <format>zip</format>
    </formats>
    <fileSets>
        <fileSet>
            <directory>target</directory>
            <includes>
                <include>MyApp-${app.version}.jar</include>
            </includes>
            <outputDirectory>/</outputDirectory>
        </fileSet>
    </fileSets>
    <files>
        <file>
            <source>CHANGES.md</source>
            <fileMode>0644</fileMode>
        </file>
        <file>
            <source>LICENSE</source>
            <fileMode>0644</fileMode>
        </file>
        <file>
            <source>README</source>
            <fileMode>0644</fileMode>
        </file>
    </files>
</assembly>

${app.version}pom.xml<properties>要素で定義されています。)

これでmvn package、jarとzipの両方が生成されます。

于 2015-10-01T14:54:52.330 に答える
1

あなたはあなたの目標を達成するためのオプションを持っている必要があります:

  1. オプション:2つのアセンブリ記述子を作成します。1つはdeps付きのjar用で、もう1つはzip用です。Zipは新しく作成されたjarファイルを取得します。
  2. オプション:プロジェクトにさらに2つのモジュールを作成します。最初のモジュールはすべてのdepを1つのjarにシェーディングし(またはシェーディングされたjarをメインjarと一緒にアタッチし、別のモジュールを保存します)、2番目のモジュールをそれに依存させてアセンブリ内のそのjarを吸い込みます。完了しました。

プロジェクトのサイズと構造に応じて、安全な方法を選択します。オプション2。これは、ビルドとデプの順序が正しいことが保証されています。オプション1は、Mavenの方法にいくらか違反しています。

于 2011-11-26T23:15:24.490 に答える
1

pom.xmlで2つのプロファイルを作成しました。

<profiles>
    <profile>
        <id>jar-with-dependencies</id>
        <activation>
            <activeByDefault>false</activeByDefault>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>2.2.1</version>
                    <configuration>
                        <archive>
                            <manifest>
                                <mainClass>by.dev.madhead.lzwj.Main</mainClass>
                            </manifest>
                        </archive>
                        <descriptorRefs>
                            <descriptorRef>jar-with-dependencies</descriptorRef>
                        </descriptorRefs>
                    </configuration>
                    <executions>
                        <execution>
                            <phase>package</phase>
                            <goals>
                                <goal>single</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
    <profile>
        <id>distro</id>
        <activation>
            <activeByDefault>false</activeByDefault>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>2.2.1</version>
                    <configuration>
                        <descriptors>
                            <descriptor>src/main/assembly/distro.xml</descriptor>
                        </descriptors>
                    </configuration>
                    <executions>
                        <execution>
                            <phase>package</phase>
                            <goals>
                                <goal>single</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

mvn clean packageこれで、単純なjar( )、依存関係のあるjar()を作成できるようになりましmvn clean package -Pjar-with-dependenciesた。mvn package -Pdistrozipを作成するために呼び出すこともできます。ただし、手動で実行する前に、-Pjar-with-dependenciesを使用してMavenを呼び出す必要があります。これを除いて、すべてが大丈夫です。

于 2011-11-27T09:40:55.233 に答える