jenkins - Maven - 2.2.1 -------Access denied error -


access denied error coming while building using maven 2.2.1 build tool

it might folder contains source code permissions or maven repo authentication. first @ folder permissions. if not solve problem can try add auth information of repo try download from, settings file;(settings file settings.xml in conf folder in maven installation folder or under .m2 file)

<settings>     <servers>         <server>             <id>myrepo</id>             <username>myusername</username>             <password>password</password>         </server>    </servers> </settings> 

you can see part in default maven settings file commented. can read comments simple documentation of settings file.


Comments

Popular posts from this blog

.htaccess - First slash is removed after domain when entering a webpage in the browser -

Automatically create pages in phpfox -

c# - Farseer ContactListener is not working -