在Maven阴影jar中包含第3方jar,而无需将其添加到本地存储库

我已经在Stack Overflow上找到了一个答案,该答案是如何在项目中包含第3方JAR而不将其安装到“本地存储库”中:


是否可以在不安装jar的情况下将jar添加到maven 2 build classpath?


但是,当我使用Maven Shade插件创建还包含项目所有依赖项的JAR时,不会自动包含第三方JAR。


如何使Maven Shade插件在阴影JAR中添加这样的第三方JAR?


按照得到的答案,我成功了。我所做的是,将此片段添加到pom.xml的开头:


<repositories>

  <repository>

    <id>repo</id>

    <url>file://${basedir}/repo</url>

  </repository>

</repositories>

然后为我的项目添加一个依赖项,也添加到pom.xml中:


<dependencies>

  <dependency>

    <groupId>dummy</groupId>

    <artifactId>dummy</artifactId>

    <version>0.0.0</version>

    <scope>compile</scope>

  </dependency>

</dependencies>

然后运行命令行以将软件包添加到“ repo”中:


mvn org.apache.maven.plugins:maven-install-plugin:2.3.1:install-file

    -Dfile=<my-jar>.jar -DgroupId=dummy -DartifactId=dummy

    -Dversion=0.0.0 -Dpackaging=jar -DlocalRepositoryPath=`pwd`/repo/

(不确定回购路径是否需要为完整路径,但不想冒险。)


现在,repo子目录的内容为:


repo/dummy/dummy/0.0.0/dummy-0.0.0.jar

repo/dummy/dummy/0.0.0/dummy-0.0.0.pom

repo/dummy/dummy/maven-metadata-local.xml

现在,我可以将其签入版本控制,并且没有本地或远程依赖项。


偶然的你
浏览 399回答 3
3回答

芜湖不芜

但是,当我使用Maven Shade插件创建还包含项目所有依赖项的JAR时,不会自动包含第三方JAR。是的,因为system假定范围内的依赖项始终存在(这正是system范围的含义),所以不会将它们包括在内。人们实际上不了解什么是system范围依赖,他们只是不断滥用它们(是的,这是滥用),然后产生副作用并想知道为什么(正如Brian在回答中指出的那样)。我已经写很多,很多,真的 很多次关于这个在这里SO和在99%的情况,system范围的相关性都应当避免。我将再重复一次“ Dependency Scopes”迷你指南所说的内容:system:在项目生命周期的某个阶段需要此依赖关系,但它是系统特定的。不建议使用此范围:这是“高级”功能,仅当您真正了解其使用的所有后果时,才可以使用它,如果实际上无法量化,则可能非常困难。根据定义,此范围使您的构建不可移植。在某些情况下可能有必要。系统范围包括<systemPath>指向此依赖项在本地计算机上的物理位置的元素。因此,它用于指代预期出现在给定本地计算机上而不是存储库中的某些工件;并且其路径可能因机器而异。systemPath元素可以在其路径中引用环境变量:${JAVA_HOME} 例如。因此,不使用system范围,而是:通过将库添加到本地存储库install:install-file。这是使事情正常进行的一种快速而肮脏的方法,如果您一个人,它可能是一种选择,但它会使您的构建不可移植。安装并运行Nexus,Archiva或Artifactory等“企业存储库”,然后通过添加您的库deploy:deploy-file。这是理想的情况。如上一个答案中所述设置基于文件的存储库,然后将您的库放入其中。如果您没有公司存储库,但需要团队协作并且不想牺牲可移植性,那么这是最好的折衷方案。请停止使用system示波器。

慕婉清6462132

使用<resources>将我的lib包含在所有jar中。即:<build>&nbsp; &nbsp; <resources>&nbsp; &nbsp; &nbsp; &nbsp; <resource>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <directory>${project.basedir}</directory>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <includes>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <include>lib/*.jar</include>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </includes>&nbsp; &nbsp; &nbsp; &nbsp; </resource>&nbsp; &nbsp; </resources>&nbsp; &nbsp; <plugins>&nbsp; &nbsp; &nbsp; &nbsp; <plugin>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <groupId>org.apache.maven.plugins</groupId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <artifactId>maven-shade-plugin</artifactId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <version>2.3</version>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <configuration>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <createDependencyReducedPom>false</createDependencyReducedPom>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </configuration>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <executions>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <execution>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <phase>package</phase>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <goals>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <goal>shade</goal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </goals>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </execution>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </executions>&nbsp; &nbsp; &nbsp; &nbsp; </plugin>&nbsp; &nbsp; </plugins></build>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java