Atlas-create-jira-plugin erorrs wiindows

Help guys please!!!

Are you able to access maven.atlassian.com from your machine?

1 Like

Hi @vladimirdementev,

Ian here, we’ve been discussing this item in Developer Support but I think the information and answer we arrive with can greatly help other members of the community who is facing a similar issue. With the error you got, it is possible that you are running behind a proxy. For Maven to play nice with proxy servers, in your settings.xml you might want to try something like

  <proxies>
      <proxy>
      <id>optional</id>
      <active>true</active>
      <protocol>http</protocol>
      <username>uname</username>
      <password>pword</password>
      <host>proxy.test.com</host>
      <port>8888</port>
      <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
    </proxy>
  </proxies>

Hope this helps!
Ian