2014-03-19 5 views
0

android에 대한 새로운 custom maven archetype을 만들고 있습니다. 설치되어 작동하고 있습니다. 내가 mvn release:perform를 사용하려고 할 경우maven-release-plugin을위한 hgrc 설정

는하지만, 나는 다음과 같은 오류 얻을 :

[DEBUG] pushing to http://code.programadoremjava.com.br/android-archetype 
[DEBUG] searching for changes 
[DEBUG] ignoring invalid [auth] key 'username' 
[DEBUG] ignoring invalid [auth] key 'password' 
[DEBUG] abort: http authorization required for http://code.programadoremjava.com.br/android-archetype 

프로젝트 hgrc은 여기에 있습니다 :

[paths] 
default = http://code.programadoremjava.com.br/android-archetype 
[auth] 
username=MyUser 
password=MyPass 

잘못/무엇을 누락?

답변

0

이 시도 :

[paths] 
default = http://code.programadoremjava.com.br/android-archetype 

[auth] 
repo.prefix = http://code.programadoremjava.com.br/android-archetype 
repo.username = MyUser 
repo.password = MyPass 

훨씬 더 세부 사항을 여기에서 찾을 수 있습니다 How to save username and password with Mercurial?