From b7a7e7dcc07c70d9223c9dcc8f63d59a0fc0009e Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 2 May 2018 11:45:33 -0400 Subject: [PATCH] Updated GWT and Gradle versions --- gradle/wrapper/gradle-wrapper.properties | 2 +- html/build.gradle | 10 +--------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e956872e4b..5a02e80bc2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.5-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip diff --git a/html/build.gradle b/html/build.gradle index 29630ab15f..d1d60b40fa 100644 --- a/html/build.gradle +++ b/html/build.gradle @@ -1,8 +1,7 @@ apply plugin: "java" -//apply plugin: 'org.akhikhl.gretty' gwt { - gwtVersion='2.8.0' // Should match the gwt version used for building the gwt backend + gwtVersion='2.8.2' // Should match the gwt version used for building the gwt backend maxHeapSize="2G" // Default 256m is not enough for gwt compiler. GWT is HUNGRY minHeapSize="1G" @@ -41,13 +40,6 @@ task distZip(type: Zip, dependsOn: dist){ destinationDir(file("build/dist-zipped")) } - -eclipseWtpFacet.doLast{ - delete{ - delete '.settings/org.eclipse.wst.common.project.facet.core.xml' - } -} - draftWar { from "war" }