Hi,
I'm struggling with your your simplest example of the custom JQL i found on gist.
package com.onresolve.jira.groovy.jql
import com.atlassian.crowd.embedded.api.User
import com.atlassian.jira.jql.query.QueryCreationContext
import com.atlassian.jira.util.MessageSet
import com.atlassian.query.clause.TerminalClause
import com.atlassian.query.operand.FunctionOperand
import org.apache.lucene.search.Query
class ABC extends AbstractScriptedJqlFunction implements JqlQueryFunction{
@Override
String getDescription() {
"gets issues with ABC in the summary"
}
@Override
List<Map> getArguments() {
[
[
"description": "Subquery",
"optional": false,
]
]
}
@Override
String getFunctionName() {
"abcFunction"
}
@Override
Query getQuery(QueryCreationContext queryCreationContext, FunctionOperand operand, TerminalClause terminalClause) {
}
}
actually I even had to remove method
def String subquery
@Override
MessageSet validate(User user, FunctionOperand operand, TerminalClause terminalClause) {
}
because it was throwing an execption. The page with existing functions got populated properly.
2018-01-09 09:07:14,565 http-nio-8080-exec-11 WARN za577 547x1411314x2 176k4ob 10.131.6.59,10.139.54.244 /rest/plugins/1.0/com.onresolve.jira.groovy.groovyrunner-key [c.o.scriptrunner.runner.ScriptRunnerImpl] Script /var/atlassian/application-data/jira/scripts/com/onresolve/jira/groovy/jql/abc.groovy failed to load/compile: startup failed: /var/atlassian/application-data/jira/scripts/com/onresolve/jira/groovy/jql/abc.groovy: 32: Method 'validate' from class 'com.onresolve.jira.groovy.jql.ABC' does not override method from its superclass or interfaces but is annotated with @Override. @ line 32, column 5. @Override ^ 1 error
Afer then after I re-scan the scripts I get ugly error and the page with function failed to load.
I am running Server instance of JIRA v7.3.1 with Script Runner 5.0.14.
Any help appreciated, I spend on it hours with no success. I also need to unable the addon and enable back to correctly scan the new version.
Many thanks,
Jaroslav
Have you tried the example from our documentation here? That works for me. It's unlikely the one in the gist works as that is a much older example.
From the error it looks like your putting the file in the correct place. Note you may want to rename your file to uppercase ABC.groovy so it matches the class name.
If that doesn't work then you may want to try upgrading ScriptRunner to a later version. I can't think of any bugs that are in 5.0.14 though that would cause this.
Many thanks @adammarkham
renaming the file to match the class name did the trick. I can see now function in the list of functions. Thanks
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.