Hi,
I need to change certain JIRA files so i followed the instructions in this post:
Now when I run the command mvn eclipse:eclipse from the \jira-source\jira-projects directory I get this error everytime:
Non-resolvable parent POM for com.atlassian.jira:jira-project:6.4.11: Failure to find com.atlassian.pom:atlassian-closedsource-pom:pom:26.14 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 3, column 13
Can anyone help me there? I'm new to maven and I have no idea on what this means or what to do
Thank you!
The closedsource-pom is Atlassian's closed source dependencies. If you are not able to resolve this dependency, you can edit the pom of the project and comment out this dependency.
eg.
<!--
<parent>
<groupId>com.atlassian.pom</groupId>
<artifactId>closedsource-pom</artifactId>
<version>5.0.21</version>
</parent>
-->
<groupId>com.atlassian.cpji</groupId>
I believe the closedsource-pom is Atlassian's closed source dependencies. If your maven is unable to resolve this, you can try commenting it out in the POM file before trying again
e.g
<!--
<parent>
<groupId>com.atlassian.pom</groupId>
<artifactId>closedsource-pom</artifactId>
<version>5.0.21</version>
</parent>
-->
<groupId>com.atlassian.cpji</groupId>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.