Added gson dependency

This commit is contained in:
Max W. 2024-02-04 21:39:28 +01:00
parent 01b33d11e9
commit ee8255df7b

View File

@ -30,6 +30,8 @@ dependencies {
annotationProcessor 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'com.rethinkdb:rethinkdb-driver:2.4.4' implementation 'com.rethinkdb:rethinkdb-driver:2.4.4'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.10.1'
} }
tasks.named('test') { tasks.named('test') {