Downloading libraries by MAVEN with proxy

2

I installed the new version of demoiselle, but when generating a project with the demoiselle-jsf-jpa archetype the project is generated with error and I can not deploy.

I think it's due to the network proxy, so much so that it excludes the /opt/demoiselle/tool/maven-repo/org and I executed maven update project and did not download the dependencies.

Can anyone tell me what links to be released in the proxy so that Maven can download the libraries?

    
asked by anonymous 19.06.2015 / 19:20

2 answers

2

These are the addresses of the repositories:

link

link

link

link

    
22.06.2015 / 14:43
2

Welder,

I do not know if I still have time to help but the registry stays, I also had problems downloading the libraries because of the network proxy. I could not get through the eclipse or straight through Maven.

In my case I just needed to configure Maven to access the proxy. The proxy configuration is in the file C:\Demoiselle\tool\maven3-local-repo\settings.xml , inside this file I added the following entries:

  <proxies>
    <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>endereço do proxy</host>
      <port>porta do proxy</port>
    </proxy>
  </proxies>

Done this worked correctly in Eclipse and Maven.

    
12.08.2015 / 13:57