You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.