Edits to make GWT compilation work

This commit is contained in:
Anuken
2017-07-05 13:22:39 -04:00
parent 154247a461
commit 922ab26b0d
5 changed files with 8 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ apply plugin: "jetty"
gwt {
gwtVersion='2.8.0' // Should match the gwt version used for building the gwt backend
maxHeapSize="1G" // Default 256m is not enough for gwt compiler. GWT is HUNGRY
maxHeapSize="2G" // Default 256m is not enough for gwt compiler. GWT is HUNGRY
minHeapSize="1G"
src = files(file("src/")) // Needs to be in front of "modules" below.
@@ -13,6 +13,7 @@ gwt {
compiler {
strict = true;
//enableClosureCompiler = true;
disableCastChecking = true;
}
}