You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I developed a jira plugin in eclipse. It's working so far. Now I wanted to switch to IntelliJ IDEA. There I activated the plugin to handle the dependencies with Maven.
For some imports in the java files IntelliJ is complaining about missing dependencies. For example "org.slf4j.Logger" or "com.atlassian.plugin.PluginParseException" or "javax.servlet.http.HttpServlet".
In an example project I saw that they added these lines for example in the pom.xml:
<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> <dependency> <groupId>com.atlassian.plugins</groupId> <artifactId>atlassian-plugins-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.plugins</groupId> <artifactId>atlassian-plugins-webfragment-api</artifactId> <scope>provided</scope> </dependency>
This doesn't work in IntelliJ because the IDE needs the version of the dependencies. Now for me is the question how to know which version is provided by Jira 7.3.3 for example. If I search for "javax.servlet" in IntelliJ then there are for example version 2.5 or 3.0.1. And for "slf4j" I don't know if "slf4j-simple" is the right one because the maven of IntelliJ cannot find it.
In eclipse I could use "atlas-mvn eclipse:eclipse" which added all dependencies so that eclipse didn't complained about missing dependencies.
So my questions are:
Hi Jens - since this is development related, you might want to try asking this over at: https://community.developer.atlassian.com as well (if you haven't already).
Hoepfully someone over there will be able to help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here's a link to the topic over in the developer community, so others can find/follow: https://community.developer.atlassian.com/t/how-to-handle-dependencies-for-jira-plugins-in-intellij-idea/2078
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Happy New Year! We hope you all had a safe and restful holiday season. 2020 was a unique year full of unforeseen events; however, as we enter the new year of 2021, we’re optimistic for the light at t...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.