How to add JIRA service with groovyrunner?

Tsol
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 8, 2013

Hi everybody.

i'm trying to add a service with groovyrunner. I'm doing the following steps:

1. Create the script testService.groovy

import org.apache.log4j.Category



log = Category.getInstance("com.onresolve.jira.groovy.example.testService")



log.debug("Service testService script running")

file's absolut path is: /opt/jira/groovyscripts/services/testService.groovy

2. Going to administration section and filling the fields

Name: com.onresolve.jira.groovy.GroovyService

Class: /opt/jira/groovyscripts/services/testService.groovy

3. I'm always getting an error

Class

[/opt/jira/groovyscripts/services/testService.groovy] was not found.

Ensure that you have typed it correctly and it is in the classpath.

I have followed the instructions from documentation and relative questions without luck.

Probably i'm missing something...

Thanx in advance,

Kostas

1 answer

1 accepted

1 vote
Answer accepted
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 8, 2013

The service name is anything you like, use it for your own info.

The class is com.onresolve.jira.groovy.GroovyService.

In the next part of the form you enter the path to the file... testService.groovy in your case.

Tsol
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 9, 2013

Thanx Jamie,

my mind was stuck...for an unkown reason i was putting the path in class field

Suggest an answer

Log in or Sign up to answer