Maven Release Plugin:Permission denied(publickey)Github

时间:2017-12-18 20:08:30

标签: maven github ssh-keys maven-release-plugin

我正在尝试部署我在Github上托管的Maven项目。我已经为Github生成并添加了我的公钥,而且我认为我已经在pom.xml填充了所有必需的属性:

<licenses>
    <license>
        <name>MIT License</name>
        <url>http://www.opensource.org/licenses/mit-license.php</url>
    </license>
</licenses>

<developers>
    <developer>
        <name>Hristo Vrigazov</name>
        <email>hvrigazov@gmail.com</email>
        <organization>Hribol</organization>
        <organizationUrl>https://github.com/hristo-vrigazov</organizationUrl>
    </developer>
</developers>

<scm>
    <connection>scm:git:git://github.com/hristo-vrigazov/bromium.git</connection>
    <developerConnection>scm:git:git://github.com/hristo-vrigazov/bromium.git</developerConnection>
    <url>https://github.com/hristo-vrigazov/bromium</url>
    <tag>com.hribol.bromium.dsl.parent-1.0.0</tag>
</scm>

我试图发布如下:

ssh-add ~/.ssh/github_rsa
ssh-add -l
mvn release:prepare release:perform -B -e | tee maven-central-deploy.log

但是,我一直从Maven收到此消息,表明我的SSH密钥存在问题:

Provider message:
The git-push command failed.
Command output:
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.


at org.apache.maven.plugins.release.PrepareReleaseMojo.prepareRelease(PrepareReleaseMojo.java:299)
at org.apache.maven.plugins.release.PrepareReleaseMojo.execute(PrepareReleaseMojo.java:247)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)
... 20 more
Caused by: 
org.apache.maven.shared.release.scm.ReleaseScmCommandException: Unable to tag SCM
Provider message:
The git-push command failed.
Command output:
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

可能是什么原因?我能够将快照部署到Nexus。

2 个答案:

答案 0 :(得分:2)

您在网址中使用了错误的protocol (the "git" one)

<connection>scm:git:git://github.com/hristo-vrigazov/bromium.git</connection>

应该使用ssh:

<connection>scm:git:ssh://git@github.com/hristo-vrigazov/bromium.git</connection>

<connection>scm:git:git@github.com:hristo-vrigazov/bromium.git</connection>

developerConnection相同)
只有这样,才会使用你的ssh密钥。

答案 1 :(得分:0)

确保是否使用配置文件在mvn release:command

的参数中指定-P