diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index dc7fe80a..2ec3a707 100644 --- a/build.gradle +++ b/build.gradle @@ -10,9 +10,10 @@ project.ext { springSecurityVersion = '4.2.1.RELEASE' jacksonVersion = '2.8.6' slf4jVersion = '1.7.22' - logbackVersion = '1.1.9' + logbackVersion = '1.1.10' junitVersion = "4.12" hamcrestVersion= "1.3" + mockitoVersion = "2.7.2" } buildscript { @@ -44,7 +45,7 @@ dependencies { testCompile "org.slf4j:slf4j-api:${slf4jVersion}" testCompile "junit:junit:${junitVersion}" testCompile "org.hamcrest:hamcrest-all:${hamcrestVersion}" - testCompile "org.mockito:mockito-core:2.7.0" + testCompile "org.mockito:mockito-core:${mockitoVersion}" testRuntime "mysql:mysql-connector-java:5.1.40" } |