1

私はMaven2.2.1を使用しており、設定を使用してリポジトリへのSSH接続を実行しようとしています。

<server>
<id>my-repository-ssh</id>
<username>username</username>
<passphrase>mypassphrase</passphrase>
<privateKey>c:/Users/f.lastname/.ssh/id_rsa</privateKey>
</server>

私はCygwin環境で作業しています。

Mavenでプロジェクトをビルドmvn clean installすると、リポジトリに接続できません:

[INFO] artifact com.someworld:common.configuration: checking for updates from my-repository-ssh
Password for username@10.0.1.25:
[WARNING] repository metadata for: 'artifact com.someworld:common.configuration' could not be retrieved from repository: my-repository-ssh due to an error: Authentication failed: Cannot connect. Reason: Auth fail
[INFO] Repository 'my-repository-ssh' will be blacklisted

しかし、sftpコマンドで接続を作成しようとすると、うまく機能します。

$ sftp username@10.0.1.25
Enter passphrase for key '/home/F.Lastname/.ssh/id_rsa':
Connected to 10.0.1.25.
sftp>

では、この問題の理由は何でしょうか?

4

0 に答える 0