Toolbox/Database/build.gradle
Quentin Legot 5d89e92abd Fix project not being published to good repo
Signed-off-by: Quentin Legot <legotquentin@gmail.com>
2022-11-07 00:38:54 +01:00

22 lines
397 B
Groovy

plugins {
id 'java'
id 'maven-publish'
}
dependencies {
implementation 'org.postgresql:postgresql:42.5.0'
testImplementation 'com.google.code.gson:gson:2.10'
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.0"
}
java {
withSourcesJar()
withJavadocJar()
}
test {
useJUnitPlatform()
}