71 lines
1.5 KiB
Groovy
71 lines
1.5 KiB
Groovy
apply plugin: "java"
|
|
apply plugin: "jetty"
|
|
|
|
gwt {
|
|
gwtVersion='2.6.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
|
|
minHeapSize="1G"
|
|
|
|
src = files(file("src/")) // Needs to be in front of "modules" below.
|
|
modules 'com.saltosion.gladiator.GdxDefinition'
|
|
devModules 'com.saltosion.gladiator.GdxDefinitionSuperdev'
|
|
project.webAppDirName = 'webapp'
|
|
|
|
compiler {
|
|
strict = true;
|
|
enableClosureCompiler = true;
|
|
disableCastChecking = true;
|
|
}
|
|
}
|
|
|
|
task draftRun(type: JettyRunWar) {
|
|
dependsOn draftWar
|
|
dependsOn.remove('war')
|
|
webApp=draftWar.archivePath
|
|
daemon=true
|
|
}
|
|
|
|
task superDev(type: de.richsource.gradle.plugins.gwt.GwtSuperDev) {
|
|
dependsOn draftRun
|
|
doFirst {
|
|
gwt.modules = gwt.devModules
|
|
}
|
|
}
|
|
|
|
task dist(dependsOn: [clean, compileGwt]) {
|
|
doLast {
|
|
file("build/dist").mkdirs()
|
|
copy {
|
|
from "build/gwt/out"
|
|
into "build/dist"
|
|
}
|
|
copy {
|
|
from "webapp"
|
|
into "build/dist"
|
|
}
|
|
copy {
|
|
from "war"
|
|
into "build/dist"
|
|
}
|
|
}
|
|
}
|
|
|
|
draftWar {
|
|
from "war"
|
|
}
|
|
|
|
task addSource << {
|
|
sourceSets.main.compileClasspath += files(project(':core').sourceSets.main.allJava.srcDirs)
|
|
}
|
|
|
|
tasks.compileGwt.dependsOn(addSource)
|
|
tasks.draftCompileGwt.dependsOn(addSource)
|
|
|
|
sourceCompatibility = 1.6
|
|
sourceSets.main.java.srcDirs = [ "src/" ]
|
|
|
|
|
|
eclipse.project {
|
|
name = appName + "-html"
|
|
}
|