mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-15 17:02:06 +01:00
22 lines
363 B
Groovy
22 lines
363 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'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|