Maven:通过相对路径向 jar 添加依赖项

我有一个专有的jar,我想把它作为依赖项添加到我的pom中。

但我不想将其添加到存储库中。原因是我希望我通常的 maven 命令(如 等)开箱即用。(无需要求开发人员自己将其添加到某个存储库中)。mvn compile

我希望jar在源代码管理中的第三方库中,并通过pom.xml文件的相对路径链接到它。

这能做到吗?如何?


答案 1

我希望jar在源代码管理中的第三方库中,并通过pom.xml文件的相对路径链接到它。

如果你真的想要这个(理解,如果你不能使用企业存储库),那么我的建议是使用项目本地的“文件存储库”,而不是使用作用域内的依赖项。应该避免作用域,这种依赖关系在许多情况下(例如在组装中)不能很好地工作,它们造成的麻烦多于好处。systemsystem

因此,相反,请声明项目本地的存储库:

<repositories>
  <repository>
    <id>my-local-repo</id>
    <url>file://${project.basedir}/my-repo</url>
  </repository>
</repositories>

使用 localRepositoryPath 参数在其中安装您的第三方库:install:install-file

mvn install:install-file -Dfile=<path-to-file> -DgroupId=<myGroup> \ 
                         -DartifactId=<myArtifactId> -Dversion=<myVersion> \
                         -Dpackaging=<myPackaging> -DlocalRepositoryPath=<path>

更新:似乎忽略了使用插件的2.2版本时。但是,它适用于该插件的2.3及更高版本。因此,请使用插件的完全限定名称来指定版本:install:install-filelocalRepositoryPath

mvn org.apache.maven.plugins:maven-install-plugin:2.3.1:install-file \
                         -Dfile=<path-to-file> -DgroupId=<myGroup> \ 
                         -DartifactId=<myArtifactId> -Dversion=<myVersion> \
                         -Dpackaging=<myPackaging> -DlocalRepositoryPath=<path>

maven-install-plugin 文档

最后,像声明任何其他依赖项一样声明它(但没有范围):system

<dependency>
  <groupId>your.group.id</groupId>
  <artifactId>3rdparty</artifactId>
  <version>X.Y.Z</version>
</dependency>

恕我直言,这是一个比使用范围更好的解决方案,因为您的依赖项将被视为一个好公民(例如,它将包含在程序集中等)。system

现在,我必须提到,在企业环境中处理这种情况的“正确方法”(也许不是这里的情况)是使用企业存储库。


答案 2

使用作用域。 是你的 pom 的目录。system${basedir}

<dependency>
    <artifactId>..</artifactId>
    <groupId>..</groupId>
    <scope>system</scope>
    <systemPath>${basedir}/lib/dependency.jar</systemPath>
</dependency>

但是,建议您在存储库中安装jar,而不是将其提交到SCM - 毕竟这是maven试图消除的。


推荐