aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.gradle5
-rw-r--r--juick-api/build.gradle2
-rw-r--r--juick-notifications/build.gradle2
-rw-r--r--juick-rss/build.gradle2
-rw-r--r--juick-server/build.gradle2
-rw-r--r--juick-spring-www/build.gradle2
6 files changed, 8 insertions, 7 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"
}
diff --git a/juick-api/build.gradle b/juick-api/build.gradle
index ad339846..1db46f58 100644
--- a/juick-api/build.gradle
+++ b/juick-api/build.gradle
@@ -15,7 +15,7 @@ dependencies {
compile "org.springframework:spring-webmvc:${rootProject.springFrameworkVersion}"
compile "org.springframework:spring-websocket:${rootProject.springFrameworkVersion}"
- compile 'com.github.pengrad:java-telegram-bot-api:2.3.1'
+ compile 'com.github.pengrad:java-telegram-bot-api:2.3.1.1'
compile 'net.coobird:thumbnailator:0.4.8'
providedRuntime 'mysql:mysql-connector-java:5.1.40'
diff --git a/juick-notifications/build.gradle b/juick-notifications/build.gradle
index 04ff0659..ced270ed 100644
--- a/juick-notifications/build.gradle
+++ b/juick-notifications/build.gradle
@@ -28,7 +28,7 @@ dependencies {
testCompile "junit:junit:${rootProject.junitVersion}"
testCompile "org.hamcrest:hamcrest-all:${rootProject.hamcrestVersion}"
- testCompile "org.mockito:mockito-core:2.7.0"
+ testCompile "org.mockito:mockito-core:${rootProject.mockitoVersion}"
}
compileJava.options.encoding = 'UTF-8'
diff --git a/juick-rss/build.gradle b/juick-rss/build.gradle
index 7856f39f..de02bf4a 100644
--- a/juick-rss/build.gradle
+++ b/juick-rss/build.gradle
@@ -12,7 +12,7 @@ dependencies {
testCompile "junit:junit:${rootProject.junitVersion}"
testCompile "org.hamcrest:hamcrest-all:${rootProject.hamcrestVersion}"
- testCompile "org.mockito:mockito-core:2.7.0"
+ testCompile "org.mockito:mockito-core:${rootProject.mockitoVersion}"
testCompile "org.springframework:spring-test:${rootProject.springFrameworkVersion}"
}
diff --git a/juick-server/build.gradle b/juick-server/build.gradle
index 21e95e05..5028d427 100644
--- a/juick-server/build.gradle
+++ b/juick-server/build.gradle
@@ -49,7 +49,7 @@ dependencies {
testCompile "ch.vorburger.mariaDB4j:mariaDB4j:2.2.2"
testCompile "junit:junit:${rootProject.junitVersion}"
testCompile "org.hamcrest:hamcrest-all:${rootProject.hamcrestVersion}"
- testCompile "org.mockito:mockito-core:2.7.0"
+ testCompile "org.mockito:mockito-core:${rootProject.mockitoVersion}"
testCompile "org.springframework:spring-test:${rootProject.springFrameworkVersion}"
testCompile "org.springframework.security:spring-security-test:${rootProject.springSecurityVersion}"
diff --git a/juick-spring-www/build.gradle b/juick-spring-www/build.gradle
index bd00f93f..c53f6c17 100644
--- a/juick-spring-www/build.gradle
+++ b/juick-spring-www/build.gradle
@@ -36,7 +36,7 @@ dependencies {
testCompile "junit:junit:${rootProject.junitVersion}"
testCompile "org.hamcrest:hamcrest-all:${rootProject.hamcrestVersion}"
- testCompile "org.mockito:mockito-core:2.7.0"
+ testCompile "org.mockito:mockito-core:${rootProject.mockitoVersion}"
testCompile "org.springframework:spring-test:${rootProject.springFrameworkVersion}"
testCompile "ch.vorburger.mariaDB4j:mariaDB4j:2.2.2"