我正在使用Maven来管理我的依赖关系,并试图从我的项目目录中提取一些专有的jar文件。 (是的,我知道,我是一个疯狂的白痴,没有达到Maven的目的,永远都不要这样做。)在编译时,我会收到有关指向项目目录中文件的典型警告。但是,指定的jar文件没有放置在我的.m2目录中,因此,由于缺少依赖项,因此该项目无法编译。
在pom.xml中:
<dependency>
<groupId>org.sample</groupId>
<artifactId>sample</artifactId>
<scope>system</scope>
<version>2.0.3</version>
<systemPath>${project.basedir}/WebContent/WEB-INF/lib/my_file.jar</systemPath>
<type>jar</type
<optional>true</optional>
</dependency>
问题是,我是否正确声明了groupId和artifactId?有没有办法强迫Maven在我的项目目录中使用几个随机的jar文件?
谢谢您的帮助。
最佳答案
您还必须在类路径中添加jar,以便mvn提取系统依赖项。<Class-Path>libs/my_file.jar</Class-Path>
插件配置
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven.jar.plugin.version}</version>
<configuration>
<archive>
<manifestEntries>
<Build-Jdk>${jdk.version}</Build-Jdk>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Specification-Title>${project.name} Library</Specification-Title>
<Specification-Version>${project.version}</Specification-Version>
<Class-Path>libs/my_file.jar</Class-Path>
</manifestEntries>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.app.MainClass</mainClass>
<classpathPrefix>libs/</classpathPrefix>
</manifest>
</archive>
</configuration>
</plugin>
关于java - 强制Maven在项目目录中获取依赖项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51068559/