我如何在命令行上为 Maven 依赖插件指定版本范围
How do i specify a version range for Maven dependency plugin get on command line
我正在尝试使用 Maven 依赖插件来获取特定版本范围内的工件。我需要在命令行(或脚本)中执行此操作
这是我尝试过的:
mvn dependency:get -Dartifact="junit:junit:[4.0,4.11)"
但是,这个范围显然没有被识别出来。 Maven 尝试并未能下载具有 [4.0.0,4.11.0).
的文字版本的工件
我想我使用了错误的语法and/or 没有正确转义。
如何让 maven 得到符合指定版本范围的最高版本的工件?
错误信息:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:get (default-cli) on project standalone-pom: Couldn't download artifact: Missing:
[ERROR] ----------
[ERROR] 1) junit:junit:jar:[4.0,4.11)
此目标不支持版本范围:
https://issues.apache.org/jira/browse/MDEP-88
我得到:
Failed to retrieve POM for junit:junit:jar:[4.0,4.11): Could not transfer artifact junit:junit:pom:[4.0,4.11) from/to central (https://repo.maven.apache.org/maven2): Illegal character in path at index 49: https://repo.maven.apache.org/maven2/junit/junit/[4.0,4.11)/junit-[4.0,4.11).pom
所以这个范围没有被解析。
不确定做同样事情的替代方案是什么:/
版本插件允许解析范围 http://www.mojohaus.org/versions-maven-plugin/resolve-ranges-mojo.html 但仅限于 pom.xml - 需要创建一个伪造的 pom.xml - 使用此插件解析版本然后获取从创建的 pom 中提取 - 希望有更好的方法...
为了解决我遇到的类似情况
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.group.name</groupId>
<artifactId>name-maven-plugin</artifactId>
<version>[x,]</version> <!-- use any range -->
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>com.group.name</groupId>
<artifactId>name-maven-plugin</artifactId>
<!-- specify no version -->
<configuration>
<!-- any config -->
</configuration>
</plugin>
....
上面的方法有效,但是你会收到关于插件中缺少版本的警告,所以这可能会在未来的 Maven 版本中出错 - 根据警告
我正在尝试使用 Maven 依赖插件来获取特定版本范围内的工件。我需要在命令行(或脚本)中执行此操作
这是我尝试过的:
mvn dependency:get -Dartifact="junit:junit:[4.0,4.11)"
但是,这个范围显然没有被识别出来。 Maven 尝试并未能下载具有 [4.0.0,4.11.0).
的文字版本的工件我想我使用了错误的语法and/or 没有正确转义。
如何让 maven 得到符合指定版本范围的最高版本的工件?
错误信息:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:get (default-cli) on project standalone-pom: Couldn't download artifact: Missing:
[ERROR] ----------
[ERROR] 1) junit:junit:jar:[4.0,4.11)
此目标不支持版本范围:
https://issues.apache.org/jira/browse/MDEP-88
我得到:
Failed to retrieve POM for junit:junit:jar:[4.0,4.11): Could not transfer artifact junit:junit:pom:[4.0,4.11) from/to central (https://repo.maven.apache.org/maven2): Illegal character in path at index 49: https://repo.maven.apache.org/maven2/junit/junit/[4.0,4.11)/junit-[4.0,4.11).pom
所以这个范围没有被解析。
不确定做同样事情的替代方案是什么:/
版本插件允许解析范围 http://www.mojohaus.org/versions-maven-plugin/resolve-ranges-mojo.html 但仅限于 pom.xml - 需要创建一个伪造的 pom.xml - 使用此插件解析版本然后获取从创建的 pom 中提取 - 希望有更好的方法...
为了解决我遇到的类似情况
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.group.name</groupId>
<artifactId>name-maven-plugin</artifactId>
<version>[x,]</version> <!-- use any range -->
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>com.group.name</groupId>
<artifactId>name-maven-plugin</artifactId>
<!-- specify no version -->
<configuration>
<!-- any config -->
</configuration>
</plugin>
....
上面的方法有效,但是你会收到关于插件中缺少版本的警告,所以这可能会在未来的 Maven 版本中出错 - 根据警告