使 Maven 将依赖项复制到目标/库中

2022-08-31 05:18:34

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

就像现在一样,在文件夹之后,只包含我的项目的jar,但没有一个运行时依赖项。mvn clean installtarget


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

答案 2
mvn install dependency:copy-dependencies 

适用于在目标文件夹中创建的依赖项目录。喜欢它!


推荐