作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<project>
<parent>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-api-bom</artifactId>
<version>1.0</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>my-module</artifactId>
<dependencies>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
如何将父jar下载到自定义位置?
最佳答案
relativePath
只会在该位置查找 pom,如果没有找到,它会在存储库中查找。它实际上不会将 pom 下载到该位置。如果您只想构建项目,只需确保父 pom 在存储库中可用。
如果您要寻找的是在找到 pom 后实际下载它,请尝试使用 Maven 依赖项插件,将其添加到您的 pom 中:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<configuration>
<artifact>org.jboss.weld:weld-api-bom:1.0:pom</artifact>
<destination>../bom/pom.xml</destination>
</configuration>
<executions>
<execution>
<goals>
<goal>get</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
然后在命令行中:
mvn dependency:get
请注意, Artifact 和目标是在插件配置中指定的。
如果你不想修改pom,你可以尝试:
mvn org.apache.maven.plugins:maven-dependency-plugin:2.10:get -Dartifact=org.jboss.weld:weld-api-bom:1.0:pom -Ddest=../bom/pom.xml
关于java - Maven:如何将父jar下载到自定义位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34960010/
我是一名优秀的程序员,十分优秀!