Skip to content

Commit

Permalink
Fixes benchmark project and Jenkins build
Browse files Browse the repository at this point in the history
  • Loading branch information
dsaltares committed Jun 6, 2015
1 parent 830ed94 commit a6fcfd0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ subprojects {
ext {
projectGroup = "ashley"
gdxVersion = "1.6.0"
jUnitVersion = "4.12"
}

/** needed to disable Java 8 doclint which throws errors **/
Expand All @@ -31,7 +32,7 @@ project(":ashley") {

dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
testCompile "junit:junit:4.12"
testCompile "junit:junit:$jUnitVersion"
}
}

Expand All @@ -46,7 +47,7 @@ project(":tests") {
project(":benchmarks") {
dependencies {
compile project(":ashley")
testCompile "junit:junit:4.12"
compile "junit:junit:$jUnitVersion"
compile fileTree(dir: new File(projectDir, "libs"), include: "*.jar")
}
}
Expand Down

0 comments on commit a6fcfd0

Please sign in to comment.