Jens Nehlmeier
Jens Nehlmeier
"if they have no dependencies between them" ... sounds like quite some work. The plugin would need to figure out the dependency tree of all supplied GWT modules. I think...
Oh man I just stumbled upon this. In my case I have a multi module GWT library project and I couldn't run GwtTestCases through the test task because ``` java...
A simpler alternative to the known CLA is the Developer Certificate of Origin (DCO) introduced and used by the Linux Kernel. A contributor has to sign-off his/her commit and by...
Try giving it more heap memory. The error basically says all memory is gone and Garbage collection can not free anything.
This project is unmaintained. The method `SourceSetOutput.getClassesDir()` has been deprecated in Gradle 4.x and removed in Gradle 5.x. Thus you see the error. In case you want to fix the...
I guess these should work with Gradle 5: https://github.com/jiakuan/gwt-gradle-plugin https://github.com/Putnami/putnami-gradle-plugin The first one is a direct fork of this project and fixed some stuff.
What I can do is changing the parent report XML to something like ```xml .... ``` and have a custom report datasource for the parent report that looks like ```java...
@dadza Thanks for looking into it. Because of your answer I created an example report in my application and tested both cases: - Detail 1 band without printWhen expression containing...
Thanks for your answer. So my simplified example was a bit too simple. It is quite unfortunate that always all fields are fetched from the data source no matter what....
The Gradle "idea" plugin has become less important as Gradle support in IntelliJ has been greatly improved. IntelliJ uses the Gradle Tooling API to get information about the project and...