java - Maven Setup on LAN -
i wan utilize vmmagent-0.6.5 jar file. vmmagent maven project , depends on many other jar files.. want setup maven project localy , utilize jar file reference files vmmagent maven code possible setup project localy or have connect through net connection purpose because see line in pom.xml file
<scm> <connection> scm:svn:svn://svn.forge.objectweb.org/svnroot/jasmine/jasmine-vm/vmm-agent/tags/vmmagent-0.6.5 </connection> <developerconnection> scm:svn:svn+ssh://dangtran@svn.forge.objectweb.org/svnroot/jasmine/jasmine-vm/vmm-agent/tags/vmmagent-0.6.5 </developerconnection> <url> http://fisheye.jasmine.objectweb.org/browse/jasmine/jasmine/jasmine-vm/vmm-agent/tags/vmmagent-0.6.5 </url> </scm>
thanks in advnace
you need setup maven client utilize proxy server , go settings.xml of maven directory
and place this-
<settings> <proxies> <proxy> <id>genproxy</id> <active>true</active> <protocol>http</protocol> <host>theipofserver</host> <port>port</port> <username>username</username> <password>password</password> </proxy>
regards anshul
java maven
No comments:
Post a Comment