gwt-gradle-plugin
gwt-gradle-plugin copied to clipboard
Gradle plugin to support GWT (http://www.gwtproject.org/) related tasks.
gwt-gradle-plugin does not work with Gradle's new composite builds (https://docs.gradle.org/current/userguide/composite_builds.html). When "included builds" are used as dependencies inside gwt project, then sourceSet is not set correctly to the "included build"...
Gradle 3.5 introduced build caches. The gwt compile tasks would be perfect candidates to produce cacheable output. See the gradle build cache documentation [here](https://docs.gradle.org/3.5/userguide/build_cache.html#sec:task_output_caching). Make the compile tasks (and maybe...
If Google App Engine is used as part of the back end for a GWT project then several options need to be set. This issue is a feature request to...
I want to set the following GWT arguments: ``` -superDevMode -startupUrl -codeServerPort 9997 -bindAddress 192.168.178.26 ``` and for the Java VM I would like to set: ``` -XstartOnFirstThread ``` Is...
Now that Buildship is out and reasonably functional, migration from the eclipse plugin and the STS Eclipse IDE plugins seems to be starting. Buildship is not compatible with "apply plugin:...
Hi all, I am trying to set-up a project structure like: ``` root--- | ---web-app | ---web-shared | ---web-server ``` The root build.gradle has: ``` subprojects { apply plugin: 'java'...
A known problem (from reading this list), I found a refinement to the solution proposed. The issue is if you are resolving lombok.jar you cant just use -javaagent:lombok.jar=ECJ You need...
There is no way to change the location of **gwt-unitcache** and **war** directories. They aren't created under build folder but under project folder. They have to be created under build...
##### Setup Gradle 1.10 Plugin 0.3 OS Windows 7 ##### Scenario Running _gradle assemble_ multiple times in a row without changing any of the files. ##### Expected The gwt tasks...
Hello, If my understanding from the **war-using-library** example is correct, if one has two projects like: - web-app (a war project) - web-shared (a jar library project) Then in the...