Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to create a custom screen with the atlassian SDK?

S T August 15, 2019

Hey there

I want to create a custom screen with the Atlassian SDK where I can add a custom field I created. I know there are different solutions out there(I am following this one: https://community.atlassian.com/t5/Answers-Developer-Questions/Adding-Field-Screens-Programatically-in-a-plugin/qaq-p/535263 ), but as far as I seen, every one of them uses the FieldScreenImpl.

I try to use 

import com.atlassian.jira.issue.fields.screen.FieldScreenImpl;

but Intellij tells me, that it cannot resolve symbol. 
Do I do something wrong, or did they change FieldScreenImp to something else? 
Other import statements like 

import com.atlassian.jira.issue.fields.screen.FieldScreen;

do work well.

Help is really appreciated, thank you.

2 answers

0 votes
Jette und Patrick August 23, 2019

You have to insert following dependeny to pom.xml:

<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>

This solved it for me.

0 votes
Jette und Patrick August 23, 2019

I am facing the same Issue with all classes that end on Impl... Any suggestions?

Suggest an answer

Log in or Sign up to answer