Skip to content

Commit

Permalink
fixed version numbers for junit and mockito
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Pronold committed Jun 4, 2016
1 parent aad5bd6 commit 014892f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ allprojects {
appName = 'gdx-facebook'
gdxVersion = '1.9.3'
roboVMVersion = '2.2.0-SNAPSHOT'
powerMockVersion = '1.6.3'
powerMockVersion = '1.6.4'
jUnitVersion = '4.12'
mockitoVersion = '1.10.19'
androidSDKVersion = '4.12.1'
facebookRoboPodsVersion = '1.9.0'
}
Expand Down Expand Up @@ -177,12 +179,12 @@ project(":tests-core") {
dependencies {
compile project(':core')

compile "junit:junit:4.+"
compile "org.mockito:mockito-all:1.9.+"
compile "junit:junit:$jUnitVersion"
compile "org.mockito:mockito-all:$mockitoVersion"
compile "org.powermock:powermock-mockito-release-full:$powerMockVersion"

testCompile 'junit:junit:4.+'
testCompile "org.mockito:mockito-all:1.9.+"
testCompile "junit:junit:$jUnitVersion"
testCompile "org.mockito:mockito-all:$mockitoVersion"
testCompile "org.powermock:powermock-mockito-release-full:$powerMockVersion"
}

Expand Down

0 comments on commit 014892f

Please sign in to comment.