25 lines
614 B
Plaintext
25 lines
614 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("org.testcontainers:testcontainers:1.15.3")
|
|
testImplementation("org.testcontainers:postgresql:1.15.3")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-params:5.7.2")
|
|
testImplementation("com.squareup.okhttp3:okhttp:4.9.1")
|
|
testImplementation("org.jooq:joox:1.6.2")
|
|
testImplementation("com.jayway.jsonpath:json-path:2.6.0")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2")
|
|
}
|
|
|
|
tasks {
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
}
|