plexiti / camunda-grails-plugin

Integrates Camunda BPM with the Grails framework.
http://grails.org/plugin/camunda
Apache License 2.0
18 stars 8 forks source link

grails itergration tests for camunda does not work if grails.project.fork.test = false #45

Closed Luxor closed 9 years ago

Luxor commented 9 years ago

Camunda can't find a process definition in this case:

grails.project.fork = [
    // configure settings for compilation JVM, note that if you alter the Groovy version forked compilation is required
    //  compile: [maxMemory: 256, minMemory: 64, debug: false, maxPerm: 256, daemon:true],

    // configure settings for the test-app JVM, uses the daemon by default
    test: false
}
martinschimak commented 9 years ago

Hi @Luxor - I cannot reproduce any issue. I assume that you want to configure the test-app JVM to not use a daemon? You would need to configure something along the lines

grails.project.fork = [
...
    test: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, daemon: false],
...
]

Many many thx for your interest in the plugin. If you still experience issues, please reopen or feel free to create a new issue.