Our new Appfire Documentation Space is now live!

Take a look here! If you have any questions please email support@appfire.com

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Until 5.0.0 using JMWE add-on you could set a field or comment an issue using either a Raw Value or the Result of a Groovy expression. Starting from 5.0.0, JMWE provides an option to include Groovy templates too. Using this you can template your output. This is very similar to JSP markup. 

To write a simple Groovy code, <%= some Groovy code %>

To just execute a simple Groovy code, <% some Groovy code %>

Groovy templates in JMWE are used in:

Groovy template examples:

Write the issue key as a comment to the issue:

Issue key: <%= issue.get("issuekey") %>
<% if (issue.get("priority").name == "Critical") { %>
Look out!
<% } %>
<% issue.get("components").each() { %>
Component: <%= it.name %> <br>
<% } %>

Note that you can also "print" to the text:

<% issue.get("components").each() {
  print "Component: "+ it.name + "<br>"
}
%>







  • No labels