Hi, I followed the instruction to activate the script runner, but still struggling with the xml samples. I may miss some important info, please help.
Also where can I find documentation about the JIRA classes?
Thank you.
Groovy samples run ok:
import com.atlassian.jira.ComponentManager
def projectManager = ComponentManager.getInstance().getProjectManager()
def result="";
def pcount=0;
for(p in projectManager.projects) { pcount ++; }
result = "Project count:"+pcount
return result;
I am going to use groovy and JIRA api. No need for xml anymore. You can close this case. There are many good examples for groovy. Thank you Jamie for the script engine and samples .
Thanks for your reply.
Basically, I would like to create an automation process to create groups, create users, then assign users to groups. Those xml I tried are:
<JiraJelly xmlns:jira="jelly:com.atlassian.jira.jelly.JiraTagLib">
<jira:CreateGroup group-name="jelly-group1"/>
</JiraJelly>
<JiraJelly xmlns:jira="jelly:com.atlassian.jira.jelly.JiraTagLib">
<jira:CreateUser username="jelly-user1" password="passord1" confirm="passord1"
fullname="jelly-user-001" email="jelly.user001@test.com"/>
</JiraJelly>
<JiraJelly xmlns:jira="jelly:com.atlassian.jira.jelly.JiraTagLib">
<jira:AddUserToGroup username="jelly-user1" group-name="jelly-group1"/>
</JiraJelly>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Look at com.atlassian.jira.security.groups.GroupManager and com.onresolve.scriptrunner.canned.confluence.utils.UserUtils
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Hoan,
Which XML samples are you referring to?
You can find documentation about the product here: https://jamieechlin.atlassian.net/wiki/display/GRV/Script%20Runner
Documentation about JIRA api here: https://developer.atlassian.com/static/javadoc/jira/6.3.15/reference/packages.html
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.