Maven:通过相对路径为jar添加一个依赖项
我有一个专有的jar,我想添加到我的pom作为依赖项。
但我不想将其添加到存储库。 原因是我希望我的通常的maven命令,例如mvn compile
等,可以开箱即用。 (不要求开发人员a自己将其添加到某个存储库)。
我希望jar在源代码控制的第三方库中,并通过pom.xml文件的相对路径链接到它。
这可以做到吗? 怎么样?
我希望jar在源代码控制的第三方库中,并通过pom.xml文件的相对路径链接到它。
如果你真的想要这样做(理解,如果你不能使用公司仓库),那么我的建议是使用项目本地的“文件仓库”,而不是使用 system
范围的依赖关系。 system
范围应该避免,这种依赖关系在许多情况下(例如在汇编中)不能很好地工作,它们造成更多的麻烦而不是好处。
因此,相反,请声明该项目的本地存储库:
<repositories>
<repository>
<id>my-local-repo</id>
<url>file://${basedir}/my-repo</url>
</repository>
</repositories>
使用install:install-file
和localRepositoryPath
参数在这里install:install-file
第三方库:
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<myGroup>
-DartifactId=<myArtifactId> -Dversion=<myVersion>
-Dpackaging=<myPackaging> -DlocalRepositoryPath=<path>
更新:看起来install:install-file
在使用插件的2.2版时忽略localRepositoryPath
。 但是,它可以在插件的2.3和更高版本中使用。 因此,使用插件的完全限定名称来指定版本:
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
范围更好的解决方案,因为你的依赖将被视为一个好公民(例如它将被包含在一个程序集等中)。
现在,我必须提到,在公司环境中处理这种情况的“正确方式”(可能不是这种情况)将是使用公司存储库。
使用system
范围。 ${basedir}
是你的pom的目录。
<dependency>
<artifactId>..</artifactId>
<groupId>..</groupId>
<scope>system</scope>
<systemPath>${basedir}/lib/dependency.jar</systemPath>
</dependency>
不过,建议您将jar安装到存储库中,而不是将其提交给SCM--毕竟这是maven试图消除的。
这是除了我以前的答案之外的另一种方法我可以将jar添加到maven 2构建classpath而不安装它们吗?
当使用多模块构建时,特别是如果下载的JAR在父项之外的子项目中引用时,这将得到极限。 这也通过创建POM和SHA1文件作为构建的一部分来减少安装工作。 它还允许文件驻留在项目中的任何位置,而无需修复名称或遵循Maven存储库结构。
这使用了maven-install-plugin。 为此,您需要设置一个多模块项目并拥有一个代表构建的新项目,以将文件安装到本地存储库中,并确保其中一个是第一个。
你的多模块项目pom.xml看起来像这样:
<packaging>pom</packaging>
<modules>
<!-- The repository module must be first in order to ensure
that the local repository is populated -->
<module>repository</module>
<module>... other modules ...</module>
</modules>
然后,repository / pom.xml文件将包含定义来加载作为项目一部分的JAR。 以下是pom.xml文件的一些片段。
<artifactId>repository</artifactId>
<packaging>pom</packaging>
pom包装阻止了它进行任何测试或编译或生成任何jar文件。 pom.xml的肉在使用maven-install-plugin的构建部分。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>com.ibm.db2:db2jcc</id>
<phase>verify</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>com.ibm.db2</groupId>
<artifactId>db2jcc</artifactId>
<version>9.0.0</version>
<packaging>jar</packaging>
<file>${basedir}/src/jars/db2jcc.jar</file>
<createChecksum>true</createChecksum>
<generatePom>true</generatePom>
</configuration>
</execution>
<execution>...</execution>
</executions>
</plugin>
</plugins>
</build>
要安装多个文件,只需添加更多执行。
链接地址: http://www.djcxy.com/p/5043.html