Toolbox/Database/build.gradle
Quentin Legot ee67f7e075
All checks were successful
/ build (17, ubuntu-latest) (push) Successful in 4m36s
Added deleteRow and truncateTable for KeyValueTable, add test for KeyValueTable
2023-06-08 20:33:35 +02:00

9 lines
239 B
Groovy

dependencies {
implementation 'org.postgresql:postgresql:42.6.0'
testImplementation 'com.google.code.gson:gson:2.10'
implementation project(':Core')
}
test {
exclude 'fr/altarik/toolbox/database/**' // exclude for runner
}