Hallo,
I have an error in maven release plugin (mvn release:prepare):
[ERROR] The git-push command failed.
[ERROR] Command output:
[ERROR] fatal: The remote end hung up unexpectedly
But I'm sure that the remote repository works just fine. Is there
difficulties with the git protocol? I post my settings.xml and pom.xml:
@----------------- settings.xml
<settings>
<profiles>
<profile>
<id>Repository Root Locations Local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<archiva.repository.root>http://localhost:8080/archiva</archiva.repository.root>
<git.repository.root>git://localhost/~devent</git.repository.root>
</properties>
</profile>
...
-----------------@
@----------------- pom.xml
<scm>
<connection>scm:git:${git.repository.root}/xmlstorage.git
</connection>
<developerConnection>scm:git:${git.repository.root}/xmlstorage.git
</developerConnection>
<url>scm:git:scm:git:${git.repository.root}/xmlstorage.git
</url>
</scm>
<distributionManagement>
<repository>
<id>globalscaling.com-public</id>
<url>${archiva.repository.root}/repository/globalscaling.com-public/</url>
</repository>
<snapshotRepository>
<id>globalscaling.com-public-snapshots</id>
<url>${archiva.repository.root}/repository/globalscaling.com-public-snapshots/</url>
</snapshotRepository>
</distributionManagement>
-----------------@
I have them in properties because I like to change them without to touch
the pom.xml. Sometimes I work at home, there I have a good internet connection,
but sometimes I work with my laptop with no/bad connection. So I setup a git
repository and Archiva on localhost.
git pull and git push works, and mvn deploy works, too. mvn scm update
works, too. So I don't understand, if I use the ssh protocol in the URLs, mvn
release works just fine. Is it an issue with the git protocol?
Kind regards, Erwin.
--
Erwin Mueller, [email protected]
http://www.global-scaling-institute.de/
http://www.deventm.org
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]