gpt4 book ai didi

maven-2 - 从 Maven 存储库复制工件的最新版本

转载 作者:行者123 更新时间:2023-12-03 21:45:36 24 4
gpt4 key购买 nike

我正在尝试将 war 文件从我公司的 Nexus 存储库复制到特定位置。我正在使用 Maven 依赖插件 通过以下方式:

    <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<id>copy-to-output</id>
<phase>prepare-package</phase>
<goals>
<goal>copy</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.mycompany</groupId>
<artifactId>myproduct</artifactId>
<version>2.3.0</version>
<type>war</type>
<overWrite>false</overWrite>
</artifactItem>
</artifactItems>
<outputDirectory>${basedir}/src/main/output</outputDirectory>
</configuration>
</plugin>

当我尝试使用 时出现问题<version>RELEASE</version> 而不是特定版本(或根本没有版本)以获得最新版本(尽管不是最佳实践,在这种情况下它是安全的) - 它不起作用。有什么想法吗?

最佳答案

Brian Fox(编写依赖插件)在 this answer 中解释unpackcopy目标不支持范围(也不支持 LATEST 或 RELEASE) - 他没有实现这个功能 - 并建议使用 xxx-dependencies目标。

关于maven-2 - 从 Maven 存储库复制工件的最新版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3335715/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com