2022-11-07 00:09:52 +01:00
|
|
|
dependencies {
|
|
|
|
implementation 'org.postgresql:postgresql:42.5.0'
|
|
|
|
testImplementation 'com.google.code.gson:gson:2.10'
|
2023-02-03 12:31:51 +01:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.junit_version}"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${project.junit_version}"
|
2022-11-07 00:09:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|