While creating plugin i get below error when i run atlas-run command

while creating plugin i get below error when i run atlas-run command-

[ERROR] Failed to execute goal on project SamplePlugin: Could not resolve dependencies for project com.atlassian.tutorial:SamplePlugin:atlassian-plugin:1.0.0-SNAPSHOT: Failed to collect dependencies at com.atlassian.jira:jira-api:jar:7.13.0: Failed to read artifact descriptor for com.atlassian.jira:jira-api:jar:7.13.0:

any solution?

Welcome to the community, @SnehaGole. I was able to successfully run my sample plugin using Jira version 7.13.0. Running atlas-version I am currently testing this scenario against atlas version 8.0.7 and AMPS version 8.0.0. In my pom, here are relevant properties

    <properties>
        <jira.version>7.13.0</jira.version>
        <amps.version>8.0.0</amps.version>
       ...
   </properties>

In order to help you find the root cause and hopefully find a solution, can you provide more details on how you created your app, what changes you made, and what versions you are running on? Also, are you running behind a proxy server?

Cheers,
Ian

@iragudo I have done following steps (as shown in below link) to create helloWorld plugin -

https://developer.atlassian.com/server/framework/atlassian-sdk/create-a-helloworld-plugin-project/

and for the next step when i run atlas-run command i get following error

details -
<jira.version>7.13.0</jira.version>
<amps.version>8.0.2</amps.version>
and im not running behind proxy server

Hi

I have the same problem as described above. @SnehaGole, did you find a fix for this?

Thanks

Paul

Same problem here! Trying to follow the tutorial:
https://developer.atlassian.com/server/framework/atlassian-sdk/create-a-helloworld-plugin-project/

@iragudo can you help please?

<properties>
		<jira.version>7.13.0</jira.version>
        <amps.version>8.0.2</amps.version>
        <plugin.testrunner.version>2.0.1</plugin.testrunner.version>
        <atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>
        <!-- This property ensures consistency between the key in atlassian-plugin.xml and the OSGi bundle's key. -->
        <atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
        <!-- TestKit version 6.x for JIRA 6.x -->
        <testkit.version>6.3.11</testkit.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

Hello Andressa,

based on your error message, it looks like an issue of your environment settings (specifically with your certificates).

Information in the following article could be helpful for you:
https://confluence.atlassian.com/kb/unable-to-connect-to-ssl-services-due-to-pkix-path-building-failed-error-779355358.html

Regards,
Josef

I am getting same error .Can anyone help here on priority.

@gadadechhaya28,

What exactly are you seeing? Have you set up mvn according to https://developer.atlassian.com/server/framework/atlassian-sdk/working-with-maven/?

James.