Java 强制Maven将依赖项复制到target / lib
如何将项目的运行时依赖项复制到target/lib
文件夹中?
现在,mvn clean install
该target
文件夹仅包含我项目的jar,但没有包含任何运行时依赖项。
回答:
这对我有用:
<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>
以上是 Java 强制Maven将依赖项复制到target / lib 的全部内容, 来源链接: utcz.com/qa/411018.html