Andres Almiray
Andres Almiray
I've been working on a tool to make this possible: https://jreleaser.org Bonus: it's CLI option uses picocli (thanks @remkop!)
Love to! Where can I find the doc sources? i cloned this repo and found HTML files under `docs` but it looks to me the site is built with Asciidoc,...
FYI griffonw allows you to run run Griffon apps without having a Griffon distribution installed in your system before hand. This is a feature we copied from Gradle, see http://griffon.codehaus.org/guide/latest/guide/theCommandLine.html#theGriffonWrapper...
According to line 328 https://github.com/griffon/griffon/blob/master/subprojects/griffon-scripts/src/main/groovy/Package.groovy we already set permissions on non *.bat files. Is this not working for your package?
I think we have two problems here: 1) griffon distro does not assign executable permissions to griffonw. Filed and Fixed http://jira.codehaus.org/browse/GRIFFON-610 2) zip package does not assign executable permissions to...
OK, so packing on Windows is still an issue as the Gant script does not apply executable permissions to files found under 'bin\' ?
IMHO files that are IDE specific should not be under SCM. I'd be better to configure the eclipse gradle plugin and write down specific configuration using the gradle DSL
Indeed. The design of `DecorationPanel` feels that it was made with programmatic usage in mind. And though I like direct API usages I've come to appreciate the easiness of FXML...
Yes. The current constructor defines lifecycle methods that must be called when content is added. I believe the following measures are needed to make `DecorationPane` be FXML friendly: - remove...
Actually the current constructor must stay in place, otherwise it breaks compatibility. The no-args constructor must be added; then rhe content wiring/unwiring. Next week there is a 2 day @hackergarten...