summaryrefslogtreecommitdiffstats
path: root/desktop/build.gradle
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2018-09-13 19:02:27 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2018-09-13 19:02:27 +0200
commitad423ba369941ebd3f9cced4030291ac67c4b3c6 (patch)
tree73c397867866f80b2ba7f50d7733a0513e46c51b /desktop/build.gradle
parent7eb1beae9fd79a07783bd850a5d739a9813797dc (diff)
downloadgdx-boardgame-ad423ba369941ebd3f9cced4030291ac67c4b3c6.zip
gdx-boardgame-ad423ba369941ebd3f9cced4030291ac67c4b3c6.tar.gz
namespace desktop -> test, move classes into desktop dir
Diffstat (limited to 'desktop/build.gradle')
-rw-r--r--desktop/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/build.gradle b/desktop/build.gradle
index 8c4bc7f..8dde89f 100644
--- a/desktop/build.gradle
+++ b/desktop/build.gradle
@@ -5,7 +5,7 @@ apply plugin: "java"
sourceCompatibility = 1.8
sourceSets.main.java.srcDirs = [ "src/" ]
-project.ext.mainClassName = "ch.asynk.gdx.board.desktop.DesktopLauncher"
+project.ext.mainClassName = "ch.asynk.gdx.board.test.DesktopLauncher"
project.ext.assetsDir = new File("build/assets");
task run(dependsOn: classes, type: JavaExec) {