Hi all,
I am having problem deploying a process with a script task in it.
process2,bpm has a script task, resource referenced as "script.groovy".
And I tried the following, which is wrong because:
@Test
@Deployment(resources = {"process1.bpmn", "process2.bpmn"})
org.camunda.bpm.engine.ProcessEngineException: Unable to load script file from resource script.groovy | process2.bpmn | line 39 | column 167
ScriptTask does not provide script | process2.bpmn | line 39 | column 167
And the following is also wrong:
@Test
@Deployment(resources = {"process1.bpmn", "process2.bpmn", "script.groovy"})
which simply gives:
org.camunda.bpm.engine.exception.NullValueException: resource 'script.groovy' not found: inputStream is null
What am I supposed to do with the script file??????
Cheers, Tina