You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm-dev@maven.apache.org by csantos <cl...@ricoh-europe.com> on 2010/09/30 13:20:15 UTC

Maven release plugin and GIT

Hello,

I'm testing the maven release plugin (mvn -Darguments=-DskipTests
org.apache.maven.plugins:maven-release-plugin:2.0:prepare) with a maven
project and got this error:

...
[INFO] Checking in modified POMs...
[INFO] Executing: /bin/sh -c cd /root/git-repos4/project2 && git add --
pom.xml moduleA/pom.xml moduleB/pom.xml
[INFO] Working directory: /root/git-repos4/project2
[INFO] Executing: /bin/sh -c cd /root/git-repos4/project2 && git status
[INFO] Working directory: /root/git-repos4/project2
[INFO] Executing: /bin/sh -c cd /root/git-repos4/project2 && git commit
--verbose -F /tmp/maven-scm-845822206.commit pom.xml moduleA/pom.xml
moduleB/pom.xml
[INFO] Working directory: /root/git-repos4/project2
[INFO] Executing: /bin/sh -c cd /root/git-repos4/project2 && git
symbolic-ref HEAD
[INFO] Working directory: /root/git-repos4/project2
[INFO] Executing: /bin/sh -c cd /root/git-repos4/project2 && git push
http://172.17.27.218/project2 master:master
[INFO] Working directory: /root/git-repos4/project2
[INFO]
------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] Unable to commit files
Provider message:
The git-push command failed.
Command output:
error: Cannot access URL http://172.17.27.218/project2/, return code 22
fatal: git-http-push failed

But if i use the git command push i don't have any problems:

~/git-repos4/project2# git push origin master
Fetching remote heads...
  refs/
  refs/heads/
  refs/tags/
updating 'refs/heads/master'
  from 44728f87a5a6f90a0c8e131ad7749811ac133681
  to   8a451fc775478c144686744a0b4c0490be23b0b9
    sending 6 objects
    done
Updating remote server info
To http://localhost/project2/
   44728f8..8a451fc  master -> master

Could be an authentication problem?
I tried as well the command with username and password (mvn
-Darguments=-DskipTests -Dusername="admin" -Dpassword="admin"
org.apache.maven.plugins:maven-release-plugin:2.0:prepare), but got the same
error.
I tried to change the scm connection in the POM file, but got the same
error:
<scm>
   
<connection>scm:git:http://admin:admin@172.17.27.218/project2</connection>
</scm>


I have the file .netrc configured with host, username and password. Does
Maven use this file?

Any ideas?

regards,

Santos 
-- 
View this message in context: http://maven.40175.n5.nabble.com/Maven-release-plugin-and-GIT-tp3046833p3046833.html
Sent from the Maven - SCM mailing list archive at Nabble.com.