diff options
author | Vitaly Takmazov | 2017-02-05 19:59:46 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-02-05 19:59:46 +0300 |
commit | ce16a2282d24df8ceb35cbf34fe44783cfdbba02 (patch) | |
tree | 0775f0d4097be1ce6bd5f2d4dd14e61efbff63fa /build.gradle | |
parent | 73224cd774e32d3bf5bc9209cf6323f9b885fcab (diff) |
update dependencies
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" } |