Created
January 8, 2014 22:58
-
-
Save mariusk/8326218 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: "java" | |
apply plugin: "application" | |
sourceCompatibility = 1.6 | |
mainClassName = "net.kjeldahl.mktest.client.GwtLauncher" | |
sourceSets.main.java.srcDirs = [ "src/" ] | |
sourceSets.main.resources.srcDirs = [file("../android/assets").getAbsolutePath()] | |
sourceSets.main.compileClasspath += files(sourceSets.main.java.srcDirs) | |
sourceSets.main.compileClasspath += files(project(':core').sourceSets.main.java.srcDirs) | |
// idea doesn't like relative paths outside of content root... | |
tasks.ideaModule.doFirst { | |
sourceSets.main.resources.srcDirs = [] | |
} | |
eclipse.project { | |
name = appName + "-gwt" | |
} | |
run { | |
ignoreExitValue = true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment