我如何让我的项目的运行时依赖复制到目标/lib文件夹?

就像现在一样,在mvn清洁安装后,目标文件夹只包含我的项目的jar,但没有运行时依赖项。


当前回答

如果你的项目是war或ear类型,专家会复制依赖项。

其他回答

你可以使用Shade插件创建一个超级罐子,你可以在里面捆绑你所有的第三方依赖。

你所需要的只是在pom.xml的build/plugins里面的以下代码片段:

<plugin>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <phase>prepare-package</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
            <configuration>
                <outputDirectory>${project.build.directory}/lib</outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

当您运行时,上面的代码将在包阶段运行

mvn clean package

依赖项将被复制到代码片段中指定的outputDirectory,在本例中为lib。

如果只是偶尔这样做,则不需要更改pom.xml。简单地运行以下命令:

mvn clean package dependency:copy-dependencies

重写默认位置${project.build。目录}/依赖,添加一个名为outputDirectory的系统属性,即

    -DoutputDirectory=${project.build.directory}/lib

如果你的项目是war或ear类型,专家会复制依赖项。

假设

您不希望更改pom.xml 你不想要测试范围(例如junit.jar)或提供的依赖关系(例如wlfullclient.jar)

以下是对我有效的方法:

mvn install dependency:copy-dependencies -DincludeScope=runtime -DoutputDirectory=target/lib

这对我来说很管用:

<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>