Script function errors!
org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: Script69.groovy: 2: unable to resolve class com.atlassian.jira.ComponentManager @ line 2, column 1. import com.atlassian.jira.ComponentManager; ^
Well a lot of things have changed since jira 7 with the removal of ComponentManager.
A quick fix could be to use
import com.atlassian.jira.component.pico.ComponentManager
But that is in no way a long term solution.
Hi @Juhaina Almama ,
You should use import com.atlassian.jira.component.ComponentAccessor instead of the deprecated ComponentManager method.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
thanks for answering
I used it but I get error:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
These are not errors, but generally warnings indicating the deprecated methods. You may need to replace them with the ones compatible with the current version of your JIRA.
Use getCustomFieldObjectsByName(String) instead of getCustomFieldObjectByName
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.