after upgrade from 5.0 to 6.1.2 the jira plugin checkup shows the error in extended class (below)
MultiSelectCFType#<init> (OptionsManager, CustomFieldValuePersister, GenericConfigManager, JiraBaseUrls):void
According to current documentation, the <init> constructor of the class has changed to from 4 to 6 parameters as following:
public MultiSelectCFType(OptionsManager optionsManager,
CustomFieldValuePersister valuePersister,
GenericConfigManager genericConfigManager,
JiraBaseUrls jiraBaseUrls,
SearchService searchService,
FeatureManager featureManager)
)
So I have added nulls for two additional parameters, updated references to use current version of the class and resolved all compilation errors. Export finishes without errors and .jar file structure is identical to original). However, while attempting to process the file, plugin checkup shows the same issue with wrong number of parameters. looks like i am missing some other reference/ pointer. Please advice…
Note: I do not know java or eclipse, so any help running, debugging or troubleshooting the issue would be appreciated.