Tried this with no change in the error message. I have also tried deleting my Maven install, deleting my .m2 directory, and re-installing. Still the same error.

--Kevin
Martin Ritchie wrote:
Did maven download any files for you?
If you have a company firewall blocking maven's downloads like I did
you have to set the proxy details in the settings file.
~/.m2/settings.xml

<settings>
<localRepository>c:/.mvn/repository/</localRepository>
<proxies>
  <proxy>
     <active>true</active>
     <protocol>http</protocol>
     <host>my.webproxy.com</host>
     <port>8000</port>
  </proxy>
 </proxies>
</settings>

On 22/01/07, Kevin Smith <[EMAIL PROTECTED]> wrote:
Hello all -

I've just checked out qpid from subversion and am trying to build the Java code. I've followed the build setup docs on the wiki but Maven appears to be unhappy:

"Reason: Error getting POM for 'org.apache.maven.plugins:maven-install-plugin' from the repository: Failed to resolve artifact, possibly due to a repository
list that is not appropriately equipped for this artifact's metadata.
     org.apache.maven.plugins:maven-install-plugin:pom:2.2-SNAPSHOT"

I've searched the list archives but haven't found any info that would help me
get past this block. Any help would be appreciated.

Thanks,
Kevin




Reply via email to