web-dev-qa-db-ja.com

Mavenで実行可能jarを構築していますか?

次のように、mavenを使用して「logmanager」という小さなホームプロジェクトの実行可能jarを生成しようとしています。

Mavenを使用して依存関係を持つ実行可能JARを作成するにはどうすればよいですか?

そこに示されているスニペットをpom.xmlに追加し、mvn Assembly:assemblyを実行しました。 logmanager/targetに2つのjarファイルを生成します:logmanager-0.1.0.jarおよびlogmanager-0.1.0-jar-with-dependencies.jar。最初のjarをダブルクリックするとエラーが発生します。

Could not find the main class: com.gorkwobble.logmanager.LogManager. Program will exit.

Jar-with-dependencies.jarをダブルクリックすると、わずかに異なるエラーが発生します。

Failed to load Main-Class manifest attribute from: C:\EclipseProjects\logmanager\target\logmanager-0.1.0-jar-with-dependencies.jar

パスとクラス名をコピーして貼り付け、POMのスペルをチェックしました。私のメインクラスは、Eclipse起動構成から正常に起動します。誰かが私のjarファイルが実行されない理由を理解するのを手伝ってもらえますか?また、最初に2つのjarファイルがあるのはなぜですか?さらに情報が必要な場合はお知らせください。

参照用の完全なpom.xmlは次のとおりです。

<project xmlns="http://maven.Apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.gorkwobble</groupId>
  <artifactId>logmanager</artifactId>
  <name>LogManager</name>
  <version>0.1.0</version>
  <description>Systematically renames specified log files on a scheduled basis. Designed to help manage MUSHClient logging and prevent long, continuous log files.</description>
  <build>
    <plugins>
        <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.2</version>
            <!-- nothing here -->
        </plugin>
        <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-Assembly-plugin</artifactId>
            <version>2.2-beta-4</version>
            <configuration>
              <descriptorRefs>
                <descriptorRef>jar-with-dependencies</descriptorRef>
              </descriptorRefs>
              <archive>
                <manifest>
                  <mainClass>com.gorkwobble.logmanager.LogManager</mainClass>
                </manifest>
              </archive>
            </configuration>
            <executions>
              <execution>
                <phase>package</phase>
                <goals>
                  <goal>single</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <source>1.6</source>
              <target>1.6</target>
            </configuration>
          </plugin>
    </plugins>
  </build>
  <dependencies>
    <!-- commons-lang -->
    <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
        <version>2.4</version>
    </dependency> 

    <!-- Quartz scheduler -->
    <dependency>
        <groupId>opensymphony</groupId>
        <artifactId>quartz</artifactId>
        <version>1.6.3</version>
    </dependency>
    <!-- Quartz 1.6.0 depends on commons collections -->
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.1</version>
    </dependency>
    <!-- Quartz 1.6.0 depends on commons logging -->
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1</version>
    </dependency>
    <!-- Quartz 1.6.0 requires JTA in non J2EE environments -->
    <dependency>
      <groupId>javax.transaction</groupId>
      <artifactId>jta</artifactId>
      <version>1.1</version>
      <scope>runtime</scope>
    </dependency>

    <!-- junitx test assertions -->
    <dependency>
        <groupId>junit-addons</groupId>
        <artifactId>junit-addons</artifactId>
        <version>1.4</version>
        <scope>test</scope>
    </dependency>

    <!-- junit dependency; FIXME: make this a separate POM -->
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.1</version>
    </dependency>

  </dependencies>
  <dependencyManagement>
  </dependencyManagement>
</project>
118
RMorrisey

実際、 question で述べられた答えはwrongPDATE-20101106:誰かがそれを修正した、this答えは 編集前のバージョン )を参照し、これは少なくとも部分的にトラブルに遭遇する理由を説明します。


Logmanager/targetに2つのjarファイルを生成します:logmanager-0.1.0.jarおよびlogmanager-0.1.0-jar-with-dependencies.jar。

最初のものは、jar:jarによってpackageフェーズ中に生成されたlogmanagerモジュールのJARです(モジュールにはjarタイプのパッケージがあるため)。 2番目はAssembly:assemblyによって生成されたアセンブリで、現在のモジュールとその依存関係のクラスを含む必要があります(記述子jar-with-dependenciesを使用した場合)。

最初のjarをダブルクリックするとエラーが発生します。

Could not find the main class: com.gorkwobble.logmanager.LogManager. Program will exit.

参照として投稿されたリンクの推奨構成を適用した場合、次のような実行可能アーティファクトを生成するようにjarプラグインを構成しました。

  <plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <configuration>
      <archive>
        <manifest>
          <addClasspath>true</addClasspath>
          <mainClass>com.gorkwobble.logmanager.LogManager</mainClass>
        </manifest>
      </archive>
    </configuration>
  </plugin>

logmanager-0.1.0.jarは実際に実行可能ですが、1。これは望みのものではありません(すべての依存関係がないため)。2. com.gorkwobble.logmanager.LogManagerが含まれていません(これがエラーの意味です、 jarの内容を確認してください)。

Jar-with-dependencies.jarをダブルクリックすると、わずかに異なるエラーが発生します。

Failed to load Main-Class manifest attribute from: C:\EclipseProjects\logmanager\target\logmanager-0.1.0-jar-with-dependencies.jar

繰り返しますが、提案されたとおりにAssemblyプラグインを構成した場合、次のようなものになります。

  <plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-Assembly-plugin</artifactId>
    <configuration>
      <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
      </descriptorRefs>
    </configuration>
  </plugin>

この設定では、logmanager-0.1.0-jar-with-dependencies.jarには現在のモジュールのクラスが含まれますandその依存関係ですが、エラーによると、そのMETA-INF/MANIFEST.MFdoes n'tは含まれませんMain-Classエントリ(logmanager-0.1.0.jarと同じMANIFEST.MFではない可能性が高い)。 jarは実際にはnot実行可能ファイルですが、これもやはり必要なものではありません。


したがって、私の提案は、configuration要素をmaven-jar-pluginから削除し、maven-Assembly-pluginを次のように構成することです。

  <plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <version>2.2</version>
    <!-- nothing here -->
  </plugin>
  <plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-Assembly-plugin</artifactId>
    <version>2.2-beta-4</version>
    <configuration>
      <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
      </descriptorRefs>
      <archive>
        <manifest>
          <mainClass>org.sample.App</mainClass>
        </manifest>
      </archive>
    </configuration>
    <executions>
      <execution>
        <phase>package</phase>
        <goals>
          <goal>single</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

もちろん、org.sample.Appを実行したいクラスに置き換えます。少しおまけに、Assembly:singlepackageフェーズにバインドしているので、Assembly:assemblyをもう実行する必要はありません。 mvn installを実行するだけで、標準ビルド中にアセンブリが生成されます。

したがって、pom.xmlを上記の設定で更新し、mvn clean installを実行してください。次に、targetディレクトリにcdして、再試行します。

Java -jar logmanager-0.1.0-jar-with-dependencies.jar

エラーが発生した場合は、質問を更新して、META-INF/MANIFEST.MFファイルの内容とpom.xmlの関連部分(プラグイン構成部分)を投稿してください。次の結果も投稿してください。

Java -cp logmanager-0.1.0-jar-with-dependencies.jar com.gorkwobble.logmanager.LogManager

(Eclipseが言っていることに関係なく)コマンドラインで正常に機能していることを示すため。

編集:Java 6の場合、maven-compiler-pluginを構成する必要があります。これをpom.xmlに追加します。

  <plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
      <source>1.6</source>
      <target>1.6</target>
    </configuration>
  </plugin>
239
Pascal Thivent

Pascal Thiventの答えも助けてくれました。 ただし<pluginManagement>element内でプラグインを管理する場合は、プラグイン管理外でアセンブリを再度定義する必要があります。そうしないと、mvn installを実行したときに依存関係がjarにパックされません。

<project xmlns="http://maven.Apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>


    <build>
        <pluginManagement>
            <plugins>

                <plugin>
                    <groupId>org.Apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.1</version>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                    </configuration>
                </plugin>

                <plugin>
                    <groupId>org.Apache.maven.plugins</groupId>
                    <artifactId>maven-Assembly-plugin</artifactId>
                    <version>2.4</version>
                    <configuration>
                        <archive>
                            <manifest>
                                <mainClass>main.App</mainClass>
                            </manifest>
                        </archive>
                        <descriptorRefs>
                            <descriptorRef>jar-with-dependencies</descriptorRef>
                        </descriptorRefs>
                    </configuration>
                    <executions>
                        <execution>
                            <id>make-Assembly</id>
                            <phase>package</phase>
                            <goals>
                                <goal>single</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>

            </plugins>

        </pluginManagement>

        <plugins> <!-- did NOT work without this  -->
            <plugin>
                <groupId>org.Apache.maven.plugins</groupId>
                <artifactId>maven-Assembly-plugin</artifactId>
            </plugin>
        </plugins>

    </build>


    <dependencies>
       <!--  dependencies commented out to shorten example -->
    </dependencies>

</project>
14
mike

パッケージでAssemblyゴールを実行したくない場合は、次のコマンドを使用できます。

mvn package Assembly:single

ここでpackageはキーワードです。

5
leonidv

プロジェクトを右クリックして、maven build、maven clean、maven generate resource、およびmaven installを指定します。jarファイルが自動的に生成されます。

0
dolly doll