我如何让我的项目的运行时依赖复制到目标/lib文件夹?
就像现在一样,在mvn清洁安装后,目标文件夹只包含我的项目的jar,但没有运行时依赖项。
我如何让我的项目的运行时依赖复制到目标/lib文件夹?
就像现在一样,在mvn清洁安装后,目标文件夹只包含我的项目的jar,但没有运行时依赖项。
当前回答
你可以在你的项目目录中放置一个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只能缓存项目目录中的文件或目录,因此我引用了项目目录中的一个目录。
其他回答
简单地把刚才说过的内容讲一遍。我想创建一个可执行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
你可以在你的项目目录中放置一个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只能缓存项目目录中的文件或目录,因此我引用了项目目录中的一个目录。
如果你的项目是war或ear类型,专家会复制依赖项。
mvn install dependency:copy-dependencies
工作为我在目标文件夹中创建的依赖目录。喜欢它!
假设
您不希望更改pom.xml 你不想要测试范围(例如junit.jar)或提供的依赖关系(例如wlfullclient.jar)
以下是对我有效的方法:
mvn install dependency:copy-dependencies -DincludeScope=runtime -DoutputDirectory=target/lib