grails-gradle-plugin-archived icon indicating copy to clipboard operation
grails-gradle-plugin-archived copied to clipboard

Grails interactive mode not working

Open double16 opened this issue 10 years ago • 0 comments
trafficstars

I'm trying to use Grails interactive mode so I can run tests using the test daemon. It will be faster than running the build each time. The interactive script exits. I've tried the following:

task interactive(type: GrailsTask) {
  description = "Grails Command Line, run with --console plain --no-daemon"
  command = 'Interactive' // or 'interactive', no difference
  forwardStdIn = true
}
#./gradlew --no-daemon --console plain interactive

| Loading Grails 2.5.0
| Configuring classpath
| Running pre-compiled script

BUILD SUCCESSFUL

With or without daemon, no difference.

double16 avatar Jun 12 '15 23:06 double16