当我尝试在pom.xml中使用maven-release-plugin时,我得到了以下警告:
Overriding managed version 2.5.3 for maven-release-plugin我没有家长pom。我的pom.xml是创建独立的jar文件。为什么会产生上述警告?maven是从哪里得到2.5.3版本的?
这是我的pom.xml插件信息
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<goals>pre-integration-test</goals>
<preparationGoals>package</preparationGoals>
<allowTimestampedSnapshots>true</allowTimestampedSnapshots>
<tagNameFormat>@{project.version}</tagNameFormat>
<remoteTagging>false</remoteTagging>
</configuration>
</plugin> 谢谢
发布于 2021-01-02 05:07:56
https://stackoverflow.com/questions/65533601
复制相似问题