JiraConnector is a fork of the 'Atlassian Connector for Eclipse' plugin
It provides Jira integration withing Eclipse.
Works with Jira 8.0+
Fork of https://bitbucket.org/atlassian/jira-rest-java-client/src/master/
- Needs Java 21
- Uses java.time instead of joda time
- OSGI bundles
Updated for https://github.com/gnl42/JiraConnector
- (one time) mvn install -f atlassian-combined.osgi/pom.xml
- mvn package
- Add certificate to the keystore
- Add keystore to eclipse command line options
- Generate certificate
keytool -printcert -sslserver <Jira server> -rfc >> public.crt
- Import certificate
keytool -importcert -alias jira -keystore <path to keystore>/cacerts -file public.crt
- Add the lines below to /eclipse.ini
-Djavax.net.ssl.trustStore=/usr/lib/jvm/temurin-21-jdk/lib/security/cacerts
-Djavax.net.ssl.trustStorePassword=<keystore password>