Peter Ledbrook
Peter Ledbrook
It's a bug, but also an issue with naming. The plugin is looking for a directory called _template-test_ that contains your template source. The reason that `packageAllTemplates` does nothing is...
With regard to your last comment, why are you including the Android tools? I can understand putting that declaration in the template build file (which gets packaged up), but is...
You're right, there's no mention of what the conventions are for the plugin. I'll leave this issue open as both a documentation enhancement (explain the build conventions) and a bug.
Aye. @ldaley is also looking for a sample Ratpack site using AngularJS and MongoDB. Not sure if there is a use for MongoDB in this case, but it may be...
I would give the site project a `build` target that generates the HTML, but I wouldn't link it to any of the other projects.
I think we need to use a security policy as describe in [this blog post](http://www.chrismoos.com/2010/03/24/groovy-scripts-and-jvm-security). To my mind, the key things to restrict are: - network calls, either running a...
Good catch. Yes, scripts shouldn't be able to execute external processes by default. Also, [this online book on JAAS](http://jaasbook.com/chapters/06/jaas_in_action_chapter0.html) will prove useful as we will probably have to change policy...
[Cédric has posted an alternative solution](http://melix.github.io/blog/2015/03/sandboxing.html) for sandboxing Groovy scripts that could prove useful and simpler than using the security manager. It does work on the basis of compile-time type...
I think your issue may be down to using the method name, `packageExclude()`, as if it were a property. For example, this won't work because `packageExclude` is not a property:...
The Gradle plugin allows people to incorporate packaging and publishing of templates into a larger build. It looks like this may happen with Ratpack and its templates. I think the...