gpt4 book ai didi

java - 如何解决与maven的冲突

转载 作者:行者123 更新时间:2023-11-30 02:48:21 25 4
gpt4 key购买 nike

我有pom文件:https://gist.github.com/anonymous/2d2abdc47d868250e8f47d74bdd643c2

我使用命令构建:cleancompile assembly:single

但我收到警告:

[WARNING] 'dependencies.dependency.systemPath' for com.xxx.backtesting:client:jar should not point at files within the project directory, ${project.basedir}/lib/client-0.1-jar-with-dependencies.jar will be unresolvable by dependent projects @ line 18, column 25

并且该库在 jar 文件中不存在:

<小时/>

当我运行我的 jar 文件时,我得到:

java -jar backtestingCandlesDownloader-0.1-jar-with-dependencies.jar 1440672480000 1441025280000 60000
task: startDate = 1440672480000, endDate = 1441025280000, period = 60000
Exception in thread "main" java.lang.NoClassDefFoundError: com/xxx/backtesting/client/model/Server
at com.xxx.backtestingCandlesDownloader.Main.main(Main.java:33)
Caused by: java.lang.ClassNotFoundException: com.xxx.backtesting.client.model.Server
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 1 more

我不知道如何在 jar 文件中包含 client-0.1-jar-with-dependency.jar 。

最佳答案

您的警告是指 POM 的第 16 行和第 18 行:

<scope>system</scope>
...
<systemPath>${project.basedir}/lib/client-0.1-jar-with-dependencies.jar</systemPath>

这些行标识库的 systemPathscope 让 Maven 知道它是由系统提供的,而不是在项目内提供的 [1]。

您最好的方法是将其作为构建的一部分安装到您的本地 Maven 存储库中。这将在清理阶段将客户端 jar 文件作为 Maven Artifact 安装在本地 Maven 存储库中,使其可用于依赖项项目。作为生命周期的一部分进行安装可确保该 Artifact 自动可供所有 future 的开发人员/构建使用。

<build>
<plugins>
<!-- Installs new artifact in the local repository -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>install-artifact</id>
<phase>clean</phase>
<configuration>
<file>${project.basedir}/lib/client-0.1-jar-with-dependencies.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>com.xxx.backtesting</groupId>
<artifactId>client</artifactId>
<version>0.1</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

安装后,您只需将其作为依赖项引用,就像任何其他 Maven 依赖项一样:

<dependencies>
...
<dependency>
<groupId>com.xxx.backtesting</groupId>
<artifactId>client</artifactId>
<version>0.1</version>
</dependency>
...
</depencencies>

或者,您可以通过命令行安装该 Artifact ,但必须完全限定 jar 文件的位置 [2]。使用命令行方法安装后,您将能够像使用 Maven 中的任何其他依赖项一样使用该库:

mvn install:install-file -Dfile=/path/to/lib/client-0.1-jar-with-dependencies.jar -DgroupId=com.xxx.backtesting -DartifactId=client -Dversion=1.0 -Dpackaging=jar
  1. https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope
  2. https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html

关于java - 如何解决与maven的冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39472071/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com