275

target/libプロジェクトの実行時の依存関係をフォルダー にコピーするにはどうすればよいですか?

現在のようにmvn clean installtargetフォルダーにはプロジェクトのjarのみが含まれ、実行時の依存関係は含まれていません。

4

16 に答える 16

279

これは私のために働く:

<project>
  ...
  <profiles>
    <profile>
      <id>qa</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
              <execution>
                <phase>install</phase>
                <goals>
                  <goal>copy-dependencies</goal>
                </goals>
                <configuration>
                  <outputDirectory>${project.build.directory}/lib</outputDirectory>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>
于 2009-06-15T15:58:18.717 に答える
89

最善のアプローチは、何をしたいかによって異なります。

  • 依存関係をWARまたはEARファイルにバンドルする場合は、プロジェクトのパッケージタイプをEARまたはWARに設定するだけです。Mavenは依存関係を適切な場所にバンドルします。
  • コードとすべての依存関係を含むJARファイルを作成する場合は、 jar-with-dependencies記述子を使用してアセンブリプラグインを使用します。Mavenは、すべてのクラスと依存関係のクラスを含む完全なJARファイルを生成します。
  • 依存関係をターゲットディレクトリにインタラクティブにプルするだけの場合は、依存関係プラグインを使用してファイルをにコピーします。
  • 他のタイプの処理の依存関係を取得する場合は、おそらく独自のプラグインを生成する必要があります。依存関係のリストとディスク上のそれらの場所を取得するためのAPIがあります。あなたはそこからそれを取る必要があります...
于 2008-09-19T01:45:24.783 に答える
38

Maven 依存関係プラグイン、具体的には、dependency:copy-dependencies ゴールを見てください。The dependency:copy-dependencies mojoという見出しの下のを見てください。outputDirectory構成プロパティを ${basedir}/target/lib に設定します (テストする必要があると思います)

お役に立てれば。

于 2008-09-19T00:03:12.000 に答える
34

Maven の他のフェーズを使用せずに、依存関係をターゲット ディレクトリにコピーする必要がある場合のシンプルでエレガントなソリューションです (Vaadin を使用する場合、これは非常に便利であることがわかりました)。

完全なポンの例:

<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>groupId</groupId>
    <artifactId>artifactId</artifactId>
    <version>1.0</version>

    <dependencies>
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>1.1.1</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-dependency-plugin</artifactId>
                    <executions>
                        <execution>
                            <phase>process-sources</phase>

                            <goals>
                                <goal>copy-dependencies</goal>
                            </goals>

                            <configuration>
                                <outputDirectory>${targetdirectory}</outputDirectory>
                            </configuration>
                        </execution>
                    </executions>
            </plugin>
        </plugins>
    </build>
</project>

次に実行しますmvn process-sources

jar ファイルの依存関係は次の場所にあります。/target/dependency

于 2011-06-30T14:16:07.317 に答える
24

次のようなことを試してください:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
    <archive>
        <manifest>  
            <addClasspath>true</addClasspath>
            <classpathPrefix>lib/</classpathPrefix>
            <mainClass>MainClass</mainClass>
        </manifest>
    </archive>
    </configuration>
</plugin>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.4</version>
    <executions>
        <execution>
            <id>copy</id>
            <phase>install</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
            <configuration>
                <outputDirectory>
                    ${project.build.directory}/lib
                </outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>
于 2012-05-01T08:57:47.000 に答える
9

仮に

  • pom.xml を変更したくない
  • テスト スコープ (例: junit.jar) または提供された依存関係 (例: wlfullclient.jar) は必要ありません。

これが私のために働いたものです:

mvn install 依存関係:copy-dependencies -DincludeScope=runtime -DoutputDirectory=target/lib
于 2016-11-24T10:42:18.337 に答える
5

アプリケーション jar のバンドルを、そのすべての依存関係と MainClass を呼び出すスクリプトと共に配布する場合は、appassemblyr-maven-pluginを参照してください。

次の構成は、アプリケーションを起動するための Window および Linux 用のスクリプトを生成します (すべての依存関係 jar を参照する生成されたパスを使用して、すべての依存関係を (target/appassemblyr の下の lib フォルダーに) ダウンロードします)。その後、アセンブリ プラグインを使用して、全体をパッケージ化できます。 appassemblyr ディレクトリを zip に変換し、jar と共にリポジトリにインストール/デプロイします。

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>appassembler-maven-plugin</artifactId>
    <version>1.0</version>
    <executions>
      <execution>
        <id>generate-jsw-scripts</id>
        <phase>package</phase>
        <goals>
          <goal>generate-daemons</goal>
        </goals>
        <configuration>
          <!--declare the JSW config -->
          <daemons>
            <daemon>
              <id>myApp</id>
              <mainClass>name.seller.rich.MyMainClass</mainClass>
              <commandLineArguments>
                <commandLineArgument>start</commandLineArgument>
              </commandLineArguments>
              <platforms>
                <platform>jsw</platform>
              </platforms>              
            </daemon>
          </daemons>
          <target>${project.build.directory}/appassembler</target>
        </configuration>
      </execution>
      <execution>
        <id>assemble-standalone</id>
        <phase>integration-test</phase>
        <goals>
          <goal>assemble</goal>
        </goals>
        <configuration>
          <programs>
            <program>
              <mainClass>name.seller.rich.MyMainClass</mainClass>
              <!-- the name of the bat/sh files to be generated -->
              <name>mymain</name>
            </program>
          </programs>
          <platforms>
            <platform>windows</platform>
            <platform>unix</platform>
          </platforms>
          <repositoryLayout>flat</repositoryLayout>
          <repositoryName>lib</repositoryName>
        </configuration>
      </execution>
    </executions>
  </plugin>
  <plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.2-beta-4</version>
    <executions>
      <execution>
        <phase>integration-test</phase>
        <goals>
          <goal>single</goal>
        </goals>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/archive.xml</descriptor>
          </descriptors>
        </configuration>
      </execution>
    </executions>
  </plugin> 

ディレクトリを zip としてパッケージ化するアセンブリ記述子 (src/main/assembly 内) は次のようになります。

<assembly>
  <id>archive</id>
  <formats>
    <format>zip</format>
  </formats>
  <fileSets>
    <fileSet>
     <directory>${project.build.directory}/appassembler</directory>
     <outputDirectory>/</outputDirectory>
    </fileSet>
  </fileSets>
</assembly>
于 2009-09-19T22:06:02.287 に答える
3

プロジェクトを戦争または耳タイプのMavenにすると、依存関係がコピーされます。

于 2008-09-18T22:44:14.873 に答える
2

これは、重い依存関係を埋め込むための重いソリューションですが、Maven のAssembly Pluginがうまく機能します。

@ Rich Seller's answerは機能するはずですが、より単純なケースでは、使用ガイドからのこの抜粋のみが必要です。

<project>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2.2</version>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
于 2012-01-31T22:27:36.230 に答える
1

Shadeプラグインを使用して、サードパーティのすべての依存関係をバンドルできるuberjarを作成できます。

于 2008-09-18T22:59:48.423 に答える
1

すでに簡単に言ったことを詳しく説明するだけです。コードとともに依存関係を含む実行可能JARファイルを作成したかったのです。これは私のために働いた:

(1)pomの<build> <plugins>の下に、次のものを含めました。

<plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.2-beta-5</version>
    <configuration>
        <archive>
            <manifest>
                <mainClass>dk.certifikat.oces2.some.package.MyMainClass</mainClass>
            </manifest>
        </archive>
        <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
        </descriptorRefs>
    </configuration>
</plugin>

(2)mvn compile assembly:assemblyを実行すると、プロジェクトのターゲットディレクトリに目的のmy-project-0.1-SNAPSHOT-jar-with-dependencies.jarが生成されました。

(3)java-jarmy-project-0.1-SNAPSHOT-jar-with-dependencies.jarを使用してJARを実行しました

于 2010-09-22T12:23:53.977 に答える
0

Eclipse の Tomcat サーバーで実行しているときに、依存関係が WEB-INF/lib ファイルに表示されないことに関連する問題がある場合は、次を参照してください。

ClassNotFoundException Tomcat の起動時に DispatcherServlet が発生する (Maven の依存関係が wtpwebapps にコピーされない)

Project Properties > Deployment Assembly で Maven の依存関係を追加するだけで済みました。

于 2011-05-17T16:31:29.330 に答える