Peter Ledbrook

Results 59 comments of Peter Ledbrook

Although I really like the idea of getting people to use `final`, introducing it before Groovy properly supports it is just going to confuse users and possibly put them off...

I think the documentation may grow beyond a single README soon :smile: It may make sense to switch to GitHub Wiki so that important stuff doesn't get stuck at the...

I've started [the wiki page](../wiki/Template-developers-guide), although still needs a lot of work.

This is covered in the Getting Started guide, but the mechanism could probably do with some more detailed coverage still.

I think a basic view that uses either the default application layout or 'main' would work. I think using 'main' layout is the best approach as not every project has...

Interesting. The [issue I raised against Grails](http://jira.grails.org/browse/GRAILS-10579) specifically requested that the forking be disabled when external build tools are used. I suspect that means the Grails Gradle plugin needs to...

Another option is to set the fork options for all `GrailsTask` instances: ``` tasks.withType(org.grails.gradle.plugin.tasks.GrailsTask) { Task t -> t.jvmOptions { jvmArgs "-Xmx384mx", "-XX:MaxPermSize=256m" } } ``` It looks like Gradle...

I think the plugin should set some reasonable defaults for the forked VM, as long as those defaults can be overridden.

Not right now. I do need to go over the Gradle integration for Grails in Action again, so I might be able to take a look at it then. Not...