如何将项目的运行时依赖项复制到target/lib
文件夹中?
就像现在一样,mvn clean install
该target
文件夹仅包含我的项目的 jar,但不包含任何运行时依赖项。
如何将项目的运行时依赖项复制到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
使用在目标文件夹中创建的依赖项目录为我工作。喜欢它!
最好的方法取决于你想做什么:
Take a look at the Maven dependency plugin, specifically, the dependency:copy-dependencies goal. Take a look at the example under the heading The dependency:copy-dependencies mojo. Set the outputDirectory configuration property to ${basedir}/target/lib (I believe, you'll have to test).
Hope this helps.
对于需要将依赖项复制到目标目录而不使用任何其他 maven 阶段的情况(我发现这在使用 Vaadin 时非常有用),这是一种简单而优雅的解决方案。
完整的 pom 示例:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${targetdirectory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
然后运行mvn process-sources
jar 文件依赖项可以在/target/dependency
如果您想偶尔执行此操作(因此不想更改您的 POM),请尝试以下命令行:
mvn 依赖:复制依赖 -DoutputDirectory=${project.build.directory}/lib
如果省略最后一个参数,则依赖项将放在target/dependencies
.
您所需要的只是 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>
以上会在package
你运行的阶段运行
mvn clean package
并且依赖项将被复制到片段中指定的 outputDirectory,即lib
在这种情况下。
如果您只想偶尔这样做,则不需要更改 pom.xml。只需运行以下命令:
mvn clean package dependency:copy-dependencies
要覆盖默认位置,即${project.build.directory}/dependencies
,添加一个名为 的系统属性outputDirectory
,即
-DoutputDirectory=${project.build.directory}/lib
尝试这样的事情:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>MainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.directory}/lib
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
假如
这对我有用:
mvn 安装依赖项:复制依赖项 -DincludeScope=runtime -DoutputDirectory=target/lib
如果您想交付应用程序 jar 的捆绑包,以及它的所有依赖项和一些用于调用 MainClass 的脚本,请查看appassembler-maven-plugin。
以下配置将为 Window 和 Linux 生成脚本以启动应用程序(生成的路径引用所有依赖项 jar,下载所有依赖项(到 target/appassembler 下的 lib 文件夹中)。然后可以使用程序集插件来打包整个appassembler 目录到一个 zip,它与 jar 一起安装/部署到存储库。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>generate-jsw-scripts</id>
<phase>package</phase>
<goals>
<goal>generate-daemons</goal>
</goals>
<configuration>
<!--declare the JSW config -->
<daemons>
<daemon>
<id>myApp</id>
<mainClass>name.seller.rich.MyMainClass</mainClass>
<commandLineArguments>
<commandLineArgument>start</commandLineArgument>
</commandLineArguments>
<platforms>
<platform>jsw</platform>
</platforms>
</daemon>
</daemons>
<target>${project.build.directory}/appassembler</target>
</configuration>
</execution>
<execution>
<id>assemble-standalone</id>
<phase>integration-test</phase>
<goals>
<goal>assemble</goal>
</goals>
<configuration>
<programs>
<program>
<mainClass>name.seller.rich.MyMainClass</mainClass>
<!-- the name of the bat/sh files to be generated -->
<name>mymain</name>
</program>
</programs>
<platforms>
<platform>windows</platform>
<platform>unix</platform>
</platforms>
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-4</version>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/archive.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
将目录打包为 zip 的程序集描述符(在 src/main/assembly 中)将是:
<assembly>
<id>archive</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.build.directory}/appassembler</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>
如果您将项目设为战争或耳朵类型,maven 将复制依赖项。
这是嵌入重度依赖项的重度解决方案,但 Maven 的Assembly Plugin为我解决了问题。
@ Rich Seller 的回答应该有效,但对于更简单的情况,您应该只需要使用指南中的这段摘录:
<project>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
</project>
您可以使用Shade 插件创建一个 uber jar,您可以在其中捆绑所有 3rd 方依赖项。
只是为了简要说明已经说过的内容。我想创建一个可执行 JAR 文件,其中包含我的依赖项以及我的代码。这对我有用:
(1) 在 pom 中,在 <build><plugins> 下,我包括:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<configuration>
<archive>
<manifest>
<mainClass>dk.certifikat.oces2.some.package.MyMainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
(2) 运行 mvn compile assembly:assembly 在项目的目标目录中生成所需的 my-project-0.1-SNAPSHOT-jar-with-dependencies.jar。
(3) 我用 java -jar my-project-0.1-SNAPSHOT-jar-with-dependencies.jar 运行了 JAR
如果您在 Eclipse 中的 Tomcat 服务器上运行时遇到与 WEB-INF/lib 文件中未出现的依赖项相关的问题,请查看以下内容:
启动 Tomcat 时出现 ClassNotFoundException DispatcherServlet(Maven 依赖项未复制到 wtpwebapps)
您只需在 Project Properties > Deployment Assembly 中添加 Maven 依赖项。
您可以在项目目录中放置一个settings.xml
文件,其基本配置如下:
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository>.m2/repository</localRepository>
<interactiveMode/>
<offline/>
<pluginGroups/>
<servers/>
<mirrors/>
<proxies/>
<profiles/>
<activeProfiles/>
</settings>
有关这些设置的更多信息可以在官方Maven 文档中找到。
请注意,除非您输入绝对路径,否则该路径是相对于实际设置文件所在的目录解析的。
执行 maven 命令时,可以按如下方式使用设置文件:
mvn -s settings.xml clean install
旁注:我在我的 GitLab CI/CD 管道中使用它,以便能够为多个作业缓存 maven 存储库,这样就不需要为每个作业执行下载依赖项。GitLab 只能缓存您项目目录中的文件或目录,因此我在我的项目目录中引用了一个目录。