Add RethinkDBConnector and RethinkDBService

- Configure dependency
This commit is contained in:
2024-06-17 00:37:17 +02:00
parent d4c6c4165b
commit 375722e3a4
6 changed files with 128 additions and 2 deletions

View File

@@ -17,6 +17,10 @@ dependencies {
testImplementation 'io.rest-assured:rest-assured'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
implementation ('com.rethinkdb:rethinkdb-driver:2.4.4') {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind' // exclude older jackson-databind version
}
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1' // Manually add newer jackson-databind version without CVE
}
group 'de.w665'