gpt4 book ai didi

maven - Maven SCM插件:找不到Git SSH提供程序

转载 作者:行者123 更新时间:2023-12-04 01:42:21 28 4
gpt4 key购买 nike

我在将Maven SCM插件与Git一起使用时遇到问题。我完全无法使用该插件,因为它说未找到提供程序。运行mvn scm:tag时,出现以下错误:


[错误]无法执行目标org.apache.maven.plugins:maven-scm-plugin:1.9:tag
(default-cli)在项目hello-world-service-minimal上:无法运行tag命令:
无法加载scm提供程序。没有此类提供者:“ git:ssh://git@git-eng.REDACTED.com”
。 -> [帮助1]


我的pom.xml如下所示:

<project>
<modelVersion>4.0.0</modelVersion>

<groupId>net.REDACTED</groupId>
<artifactId>hello-world-service-minimal</artifactId>
<version>1.0.13</version>
<packaging>pom</packaging>

<name>hello-world-service</name>

<properties>
<lang.java.source>1.7</lang.java.source>
<lang.java.target>1.7</lang.java.target>

<dep.junit>4.11</dep.junit>
</properties>

<scm>
<developerConnection>scm:git:ssh://git@git-eng.REDACTED.com|PROJECT_NAME/hello-world-service-minimal.git</developerConnection>
<url>scm:git:http://git-eng.REDACTED.com/PROJECT_NAME/hello-world-service-minimal/tree/master</url>
</scm>

<distributionManagement>
<repository>
<id>dev.release</id>
<url>file:${project.build.directory}/repository/</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9</version>
<configuration>
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
</plugins>
</build>
</project>


有人知道如何解决此问题吗?这真让我抓狂。我根本不知道自己在做什么错。

最佳答案

<url>标记用于常规可浏览URL。您需要一个<connection>标记(<connection>用于读取访问,<developerConnection>用于写入访问):

<scm>
<connection>scm:git:ssh://git@git-eng.REDACTED.com|PROJECT_NAME/hello-world-service-minimal.git</connection>
<developerConnection>scm:git:ssh://git@git-eng.REDACTED.com|PROJECT_NAME/hello-world-service-minimal.git</developerConnection>
<url>http://git-eng.REDACTED.com/PROJECT_NAME/hello-world-service-minimal/tree/master</url>
</scm>


有关更多信息,请参见 Maven POM Reference

关于maven - Maven SCM插件:找不到Git SSH提供程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22625295/

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