Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi all,
Is here anyone who created a jenkins job for building a jira plugin?
I would like to know if it is possible and how to deal with atlassian's sdk in Jenkins?
Thank you!
Hi,
We're using Jenkins to build our plugin - Configuration Manager for JIRA. Here's a summary of the required configuration:
Hi Boris,
Could you please provide steps to provide target JIRA server details in Jenkins to install a built JIRA plugin?
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can try Nexus OSS - http://www.sonatype.org/nexus/it's one of the best out there :).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What did you use for your own maven repository. I have been playing with artifactory but Jenkins complains that it needs Maven 3.0.2 to force dependency resolution form artifactory. I looked at CloudBees but would like to setup my own maven repo locallly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've installed it in my own maven repository. Cloudbees offers a maven repository for freee, so you might consider it as an option.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Boris How did you fix the missing jta-1.0.1.pom issue. I have been trying to get it to work and have followed all the instructions I could find with no succes. It never seems to find it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I copied the Atlassian SDK maven settings.xml to /opt/settings.xml and edited it.
<repository>
<id>atlassian-plugin-sdk</id>
<url>file:///usr/share/atlassian-plugin-sdk-8.2.2/repository</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
Just replace the ${env.ATLAS_HOME} with real path to your Atlassian SDK home.
And then put the path /opt/settings.xml to project's advanced build settings on Jenkins.
Then build succeed in my server.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.