is there a way to improve the performance of the Grails commandline tasks. For example the test-app task is taking some time until all dependencies are checked, classes compiled etc. Even simple tasks like create-domain-class is taking some seconds to run.
Asked
Active
Viewed 197 times
2
-
1look at this answer http://stackoverflow.com/questions/942066/speeding-up-grails-test-app – Sammyrulez Oct 15 '10 at 12:22
-
on my new MBP (corei7) it can still take 2 seconds just to startup every command. I agree with the question... – hvgotcodes Oct 16 '10 at 15:06
1 Answers
1
You can use the "grails interactive" shell for running unit tests, generating basic artifacts and so on. This way you don't have to pay the startup cost for every simple command.
Note that this didn't really work for integration tests last time I tried.

Kimble
- 7,295
- 4
- 54
- 77