2020-11-26 11:00:48 +01:00
|
|
|
plugins {
|
2021-07-15 16:55:13 +02:00
|
|
|
id 'java'
|
2020-11-26 11:00:48 +01:00
|
|
|
}
|
|
|
|
|
2021-07-15 16:55:13 +02:00
|
|
|
group 'org.pgpainless'
|
2021-06-24 19:10:48 +02:00
|
|
|
|
2021-07-15 16:55:13 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2021-06-24 19:10:48 +02:00
|
|
|
}
|
|
|
|
|
2021-07-15 16:55:13 +02:00
|
|
|
dependencies {
|
2021-06-24 19:10:48 +02:00
|
|
|
|
2021-07-15 16:55:13 +02:00
|
|
|
implementation(project(":pgpainless-core"))
|
|
|
|
implementation(project(":sop-java"))
|
2020-12-06 16:52:08 +01:00
|
|
|
|
2021-07-15 16:55:13 +02:00
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
2021-08-25 12:39:31 +02:00
|
|
|
|
|
|
|
testImplementation 'ch.qos.logback:logback-classic:1.2.5'
|
2020-11-26 11:00:48 +01:00
|
|
|
}
|
2020-12-06 16:52:08 +01:00
|
|
|
|
2021-07-15 16:55:13 +02:00
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
2021-07-20 09:55:24 +02:00
|
|
|
}
|