迫使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>
最好的方法取决于你想要做什么:
mvn install dependency:copy-dependencies
适用于我在目标文件夹中创建的依赖关系目录。 喜欢它!
链接地址: http://www.djcxy.com/p/53315.html