如何将项目的运行时依赖项复制到target/lib文件夹中?
target/lib
就像现在一样,在mvn clean install之后,target文件夹只包含我的项目的jar,但没有运行时依赖项。
mvn clean install
target
如果你的项目是war或ear类型,专家会复制依赖项。
你可以使用树荫下的插件来创建一个超级罐子,你可以在其中捆绑你所有的第三方依赖。
看一看Maven依赖插件,具体地说,依赖:copy-dependencies目标。看看依赖:复制依赖魔咒标题下的这个例子。将outputDirectory配置属性设置为${basedir}/target/lib(我相信,你必须测试)。
希望这能有所帮助。
最好的方法取决于你想做什么:
这对我来说很管用:
<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>
如果你想交付一个应用程序jar包,连同它的所有依赖项和一些脚本来调用MainClass,请查看appassembler-maven-plugin。
下面的配置将为windows和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>
简单地把刚才说过的内容讲一遍。我想创建一个可执行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)
您只需在项目属性>部署程序集中添加Maven依赖项。
对于需要将依赖项复制到目标目录而不使用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
mvn process-sources
jar文件依赖项可以在/target/dependency中找到
/target/dependency
这是一个用于嵌入严重依赖项的重载解决方案,但Maven的组装插件对我来说是有用的。
@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>
试试这样做:
<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 install dependency:copy-dependencies
工作为我在目标文件夹中创建的依赖目录。喜欢它!
如果你想偶尔这样做(因此不想改变你的POM),试试这个命令行:
mvn dependency:copy-dependencies -DoutputDirectory=${project.build.directory}/lib
If you omit the last argument, the dependences are placed in target/dependencies.
target/dependencies
假设
以下是对我有效的方法:
mvn install dependency:copy-dependencies -DincludeScope=runtime -DoutputDirectory=target/lib
你所需要的只是pom.xml的build/plugins中的以下片段:
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阶段运行
package
mvn clean package
依赖项将被复制到代码段中指定的outputDirectory,在本例中为lib。
lib
如果只是偶尔这样做,则不需要更改pom.xml。简单地运行以下命令:
mvn clean package dependency:copy-dependencies
要覆盖默认位置${project.build.directory}/dependencies,添加一个名为outputDirectory的System属性。
${project.build.directory}/dependencies
outputDirectory
-DoutputDirectory=${project.build.directory}/lib
你可以在你的项目目录中放置一个settings.xml文件,使用如下的基本配置:
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命令时,你可以像下面这样使用设置文件:
mvn -s settings.xml clean install
旁注:我在我的GitLab CI/CD管道中使用此功能,以便能够为几个作业缓存maven存储库,这样就不需要为每个作业执行下载依赖项。GitLab只能缓存项目目录中的文件或目录,因此我引用了项目目录中的一个目录。