Error generating maven / gitflow release

0

Hello, I have a Java application and I use Maven + gitflow to generate releases. I can make the clone via ssh / key without problem. But in the hour of running the command

mvn jgitflow:release-start

The following error is thrown:

Caused by: org.eclipse.jgit.errors.UnsupportedCredentialItem:
ssh://[email protected]:10022: The authenticity of host '127.0.0.1' can't be established.
RSA key fingerprint is 7e:03:51:7b:55:a5:cd:de:4c:7a:0d:1b:43:75:08:68.
Are you sure you want to continue connecting?
      at  com.atlassian.maven.plugins.jgitflow.util.ConsoleCredentialsProvider.get(ConsoleCredentialsProvider.java:71)

    
asked by anonymous 27.02.2015 / 17:38

1 answer

1

I was able to resolve, I disabled the ssh check in Ubuntu

I added the following line to my ~/.ssh/config (if the file does not exist, just create it)

Host *
StrictHostKeyChecking no

* disables for all hosts, if you want to disable for a specific host, just replace * with host

    
05.03.2015 / 16:32