Steffen Schäfer
Steffen Schäfer
The examples are wired against the latest development version (currently 0.4-SNAPSHOT). As you already discovered, this version cant' be found in the maven repo committed to GitHub. This version has...
Without having it tested I would say it looks good but: - "from project.sourceSets.main.output" should not be necessary as this references the compiler output that should already be included in...
I hope I understood the problem right .... When starting gwtDev, the dev mode window will appear at some time. If I remember right, the gradle process terminates if you...
Only Client only log messages (GWT.log/TreeLoggerStuff) are shown in the DevMode window (yes I know where to find it). The important part here is server side logging. These logs would...
For the record -> This is related to http://issues.gradle.org/browse/GRADLE-1254
This repository isn't maintained anymore. You can use this maintained fork: https://github.com/jiakuan/gwt-gradle-plugin https://plugins.gradle.org/plugin/org.wisepersist.gwt It supports recent GWT, Gradle and Java versions.
The dependsOn looks good ... Supposed you defined a source set named "gwtCodeGenerators" you need the following to extend the classpath of compileGwt task: ``` compileGwt { classpath += sourceSets.gwtCodeGenerators.output.classesDir...
The tasks compileGwt and draftCompileGwt have UP-TO-DATE checks implemented. Unfortunately there is a bug in Gradle (see Issue #18 and [GRADLE-3018](http://issues.gradle.org/browse/GRADLE-3018). This potentially breaks UP-TO-DATE checks for you. And no,...
There are currently several bugs in the dependency stuff (mainly related to Eclipse) so I have to check this part again. Then I will investigate if there is a clean...
As far as I know, this blocking behavior is the intended behavior when running Gradle tasks in debug mode. I do not know if this can globally be changed in...