Hi Everyone,
we use a plenty of Jelly scipts for easy project, permission scheme and notification scheme creation. Hence Jelly is not supported anymore from the next JIRA version, we need to change to Groovy. The problem is that we don't know Groovy and therefore I ask you whether you have already such scripts or script skeleton?
It would be great help for us!
Thanks in advance,
Rumi
basically it is not much different from java.
you inject JIRA components into the script and call their methods pretty much the same way you would do it in pure java. You can use ComponentManager or ComponentAccessor statically to inject JIRA components.
example creating a new project
import com.atlassian.jira.ComponentManager import com.atlassian.jira.project.ProjectManager /* statically load project manager */ def projectManager = ComponentManager.getInstance().getProjectManager() /* use project manager to create project */ projectManager.createProject(name,key,description,leadKey,url,assigneeType)
https://docs.atlassian.com/jira/latest/com/atlassian/jira/project/ProjectManager.html
Note: you may want to inject other JIRA components first to resolve parameters required to create desired projects and schemes. Follow JIRA docs.
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.