小编典典

Java 强制Maven将依赖项复制到target / lib

java

如何将项目的运行时依赖项复制到target/lib文件夹中?

现在,mvn clean installtarget文件夹仅包含我项目的jar,但没有包含任何运行时依赖项。


阅读 494

收藏
2020-03-12

共1个答案

小编典典

这对我有用:

<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>
2020-03-12