Toolbox/tasks/build.gradle
Quentin Legot 396f0cee94 organization changed, added sql connection project
Signed-off-by: Quentin Legot <legotquentin@gmail.com>
2022-11-07 00:09:52 +01:00

22 lines
391 B
Groovy

plugins {
id 'java'
id 'maven-publish'
}
group "${project.maven_group}"
version "${project.maven_version}"
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.junit_version}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${project.junit_version}"
}
java {
withSourcesJar()
withJavadocJar()
}
test {
useJUnitPlatform()
}