Steffen Schäfer
Steffen Schäfer
The tasks compileGwt/draftCompileGwt, gwtDev, gwtSuperDev are all executed as seperate process. I don't know why Gradle doesn't provide a functionality to customize the debugging stuff. As far as I know,...
I think, the following should work: ``` dependencies { compile project(':core-project') } gwt { src += files(project(':core-project').sourceSets.main.allJava.srcDirs) + files(project(':core-project').sourceSets.main.output.resourcesDir) } ```
The whole IntelliJ IDEA stuff is very complex compared with what is needed to support Eclipse. I checked the wole thing some months ago. I'll try to write down what...
It seems that I have to check your approach :) It really doesn't sound so bad.
up-to-date checks of compileGwt work for me. On the second run it's correctly marked as UP-TO-DATE. I tested it using one of the example projects and a real world project....
The track at gradle.org ... http://forums.gradle.org/gradle/topics/two_different_instances_of_the_same_enum_value_for_previous_and_current_input_property_when_using_the_gradle_daemon?utm_content=topic_link&utm_medium=email&utm_source=new_topic http://issues.gradle.org/browse/GRADLE-3018
What you need: - Gradle multi-module build is explained in [the Gradle documentation](http://www.gradle.org/docs/current/userguide/multi_project_builds.html) - shared project is a simple java project - server project is a simple java project and...
About the first part (excluding server from GWT compilation): This isn't possible as the GWT compiler only gets the sources as part of the classpath. The classpath can only contain...
When talking about Super Dev Mode, which "version" do you mean: 1. Gradle task gwtSuperDev: pre GWT 2.7 Super Dev Mode (Code Server) -> the one with the Bookmarklets 2....