2016-11-18 1 views
0

derzeit versuche ich eine mvn release durchzuführen: perform, aber es hängt, wenn es um die maven-site-phase ging. HierMaven release: perform hängt bei maven-site phase

ist das Protokoll im Debug-Modus, bis es

[INFO]  Using credentials from server id 'maven-site' 
[INFO] [DEBUG] configureWagon 
[INFO] [DEBUG] configureWagon server snapshots 
[INFO] [DEBUG] configureWagon server releases 
[INFO] [DEBUG] configureWagon server maven-site 
[INFO] [DEBUG] configureWagon server release.server 
[INFO] [DEBUG] configureWagon server svn.srs-pen.de 
[INFO] [DEBUG] repository protocol scp 
[INFO] [DEBUG] getProxy 'protocol': scp 
[INFO] [DEBUG] getProxy 'protocol': scp no ProxyInfo found 
[INFO] [DEBUG] Mapped url: scp://release.server/srv/www/htdocs/foo.bar 
/foobar-module/4.1.4/foobar-module/ to relative path: ..\..\..\foo.bar\foobar- 
module\4.1.4\foobar-module 
[INFO] [DEBUG] top distributionManagement.site.url=scp://release.server/srv/ww 
w/htdocs/foo/parent/1.23/, actual module relative path: ../../../de.s 
rs.pen.foobar/foobar-module/4.1.4/foobar-module 
[INFO] [DEBUG] Mapped url: scp://release.server/srv/www/htdocs/foo.bar 
/foobar-module/4.1.4/foobar-module/ to relative path: ..\..\..\foo.bar\foobar- 
module\4.1.4\foobar-module 
[INFO] [DEBUG] authenticationInfo with id 'maven-site': mvnsite 
[INFO] [DEBUG] connect with authenticationInfo and without proxyInfo 
[INFO] Using private key: C:\Users\foouser\.m2\playground-mvnsite.ppk 
[INFO] The authenticity of host 'release.server' can't be established. 
[INFO] RSA key fingerprint is e9:49:9c:c7:2b:02:dd:a8:4e:04:09:8f:e7:eb:03:ef. 
hängt

Die distriubution wie diese

konfiguriert ist
<distributionManagement> 
    <repository> 
     <id>releases</id> 
     <url>http://release.server/nexus/content/repositories/releases/</url> 
    </repository> 
    <snapshotRepository> 
     <id>snapshots</id> 
     <url>http://release.server/nexus/content/repositories/snapshots/</url> 
    </snapshotRepository> 
    <site> 
     <id>maven-site</id> 
     <url>scp://release.server/srv/www/htdocs/${project.groupId}/${project.artifactId}/${project.version}/</url> 
    </site> 
</distributionManagement> 

Jede Idee? Danke

Antwort

0

Haben Sie auch eine ssh-Verbindung zum release.server? Oder nur http-Verbindung? Ich denke, maven site verwendet ssh, um das Dokument zu kopieren.

Verwandte Themen