mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-13 07:52:06 +01:00
24 lines
426 B
Groovy
24 lines
426 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'org.pgpainless'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":pgpainless-core"))
|
|
implementation(project(":sop-java"))
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
|
|
testImplementation 'ch.qos.logback:logback-classic:1.2.5'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|