我有一个专有的jar,我想把它作为依赖项添加到我的pom中。
但我不想将它添加到存储库中。原因是我想让我常用的maven命令(如mvn compile等)开箱即用。(无需要求开发人员自己将其添加到某个存储库中)。
我希望jar在源代码控制的3rdparty库中,并通过相对路径从pom.xml文件链接到它。
这能做到吗?如何?
我有一个专有的jar,我想把它作为依赖项添加到我的pom中。
但我不想将它添加到存储库中。原因是我想让我常用的maven命令(如mvn compile等)开箱即用。(无需要求开发人员自己将其添加到某个存储库中)。
我希望jar在源代码控制的3rdparty库中,并通过相对路径从pom.xml文件链接到它。
这能做到吗?如何?
当前回答
这对我来说很管用: 假设我有这个依赖关系
<dependency>
<groupId>com.company.app</groupId>
<artifactId>my-library</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/my-library.jar</systemPath>
</dependency>
然后,手动添加系统依赖项的类路径,如下所示
<Class-Path>libs/my-library-1.0.jar</Class-Path>
完整的配置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</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-library-1.0.jar</Class-Path>
</manifestEntries>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.company.app.MainClass</mainClass>
<classpathPrefix>libs/</classpathPrefix>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/libs/</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
其他回答
我们切换到gradle,这在gradle中工作得更好;)。我们只是指定一个文件夹,我们可以将罐子放入这样的临时情况。我们仍然在典型的依赖管理部分中定义了大多数jar。与maven相同)。这只是我们定义的另一个依赖项。
所以基本上现在我们可以将任何jar放到lib目录中进行临时测试,如果它不是maven中的某个存储库的话。
这是对Pascal发布的解决方案的一个小补充
当我遵循这条路线时,我在安装ojdbc jar时在maven中得到了一个错误。
[INFO] --- maven-install-plugin:2.5.1:install-file (default-cli) @ validator ---
[INFO] pom.xml not found in ojdbc14.jar
添加-DpomFile后,问题得到解决。
$ mvn install:install-file -Dfile=./lib/ojdbc14.jar -DgroupId=ojdbc \
-DartifactId=ojdbc -Dversion=14 -Dpackaging=jar -DlocalRepositoryPath=./repo \
-DpomFile=~/.m2/repository/ojdbc/ojdbc/14/ojdbc-14.pom
我以前曾经写过这样做的模式。
它与Pascal提出的解决方案非常相似,不过它将所有依赖项移动到一个专用的存储库模块中,这样如果是多模块构建,就不必在使用依赖项的所有地方重复它。
我也遇到了同样的问题,它只需要删除DlocalRepositoryPath参数,并在Dfile参数中从当前位置定义正确的路径即可:
mvn install:install-file -Dfile=./repo/com/tridion/cd_core/1.0/cd_core-1.0.jar -DgroupId=com.tridion -DartifactId=cd_core -Dversion=1.0 -Dpackaging=jar
注意:Apache Maven 3.8.6
你可以使用eclipse生成一个可运行的Jar: 导出/Runable Jar文件