aboutsummaryrefslogtreecommitdiffstats
path: root/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle15
1 files changed, 6 insertions, 9 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 160f0c4..6bc77d9 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -6,7 +6,6 @@ plugins {
id 'io.spring.dependency-management'
id 'org.springframework.boot'
id 'jacoco'
- id 'org.sonarqube'
id 'com.github.hierynomus.license'
id 'com.gorylenko.gradle-git-properties'
}
@@ -19,14 +18,13 @@ configurations {
}
ext {
- vavrVersion = '0.10.4'
problemVersion = '0.27.1'
problemSpringVersion = '0.27.0'
- logbackVersion = '1.2.11'
- logstashLogbackVersion = '7.2'
- embedMongoVersion = '3.2.8'
- embedMongoIntegrationVersion = '1.1.0-spring27x'
- springCloudWiremockVersion = '3.1.0'
+ logbackVersion = '1.4.11'
+ logstashLogbackVersion = '7.4'
+ embedMongoVersion = '4.7.0'
+ embedMongoIntegrationVersion = '4.7.0'
+ springCloudWiremockVersion = '4.0.3'
}
dependencies {
@@ -37,7 +35,6 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-validation'
- implementation "io.vavr:vavr:$vavrVersion"
implementation "org.zalando:problem:$problemVersion"
implementation "org.zalando:jackson-datatype-problem:$problemVersion"
implementation "org.zalando:problem-spring-webflux:$problemSpringVersion"
@@ -57,7 +54,7 @@ dependencies {
testImplementation 'io.rest-assured:rest-assured'
testImplementation "org.springframework.cloud:spring-cloud-contract-wiremock:$springCloudWiremockVersion"
testImplementation "de.flapdoodle.embed:de.flapdoodle.embed.mongo:$embedMongoVersion"
- testImplementation "de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring:$embedMongoIntegrationVersion"
+ testImplementation "de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring30x:$embedMongoIntegrationVersion"
testCompileOnly 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
}