summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.gradle1
-rw-r--r--core/build.gradle1
2 files changed, 2 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index e73f958..292b9b7 100644
--- a/build.gradle
+++ b/build.gradle
@@ -114,6 +114,7 @@ project(":core") {
dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
+ testCompile "junit:junit:+"
}
}
diff --git a/core/build.gradle b/core/build.gradle
index 03cd1be..0dec417 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -4,6 +4,7 @@ sourceCompatibility = 1.6
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceSets.main.java.srcDirs = [ "src/" ]
+sourceSets.test.java.srcDirs = [ "test/" ]
eclipse.project {