aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2017-02-05 19:59:46 +0300
committerGravatar Vitaly Takmazov2017-02-05 19:59:46 +0300
commitce16a2282d24df8ceb35cbf34fe44783cfdbba02 (patch)
tree0775f0d4097be1ce6bd5f2d4dd14e61efbff63fa /build.gradle
parent73224cd774e32d3bf5bc9209cf6323f9b885fcab (diff)
update dependencies
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle5
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"
}