On Thu, 2005-10-27 at 07:40 +0200, Krause, Steffen wrote: > Hi all, > > For some reason I have trouble setting up the proxy in the settings.xml. This > is the block I entered into the settings.xml but Maven2 will still not go > through the proxy. > > <proxies> > <proxy> > <active>true</active> > <protocol>http</protocol> > <username/> > <password/> > <host>proxy.ka1.dsh.de</host> > <port>80</port> > <nonProxyHosts/> > </proxy> > </proxies> > > It always brings following error message: > > The plugin 'org.apache.maven.plugins:maven-archetype-plugin' does not exist > or no valid version could be found > > > At home where I access the internet without a proxy it works fine but here at > work I just can't get the proxy to work. > Anybody has an idea??
That's not a proxy error as Maven is telling you it hit the repository and couldn't find what it was looking for. You're hitting a bug others are finding. Use this: mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeVersion=1.0-alpha-2 There is something wrong with the current release metadata and we're having some sync'ing problems. > Thanks, > > Steffen. -- jvz. Jason van Zyl jason at maven.org http://maven.apache.org In short, man creates for himself a new religion of a rational and technical order to justify his work and to be justified in it. -- Jacques Ellul, The Technological Society --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
