build.gradle.kts 614 B

123456789101112131415161718192021222324
  1. plugins {
  2. id("java")
  3. }
  4. repositories {
  5. mavenCentral()
  6. }
  7. dependencies {
  8. testImplementation("org.testcontainers:testcontainers:1.16.2")
  9. testImplementation("org.testcontainers:postgresql:1.15.3")
  10. testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
  11. testImplementation("org.junit.jupiter:junit-jupiter-params:5.7.2")
  12. testImplementation("com.squareup.okhttp3:okhttp:4.9.1")
  13. testImplementation("org.jooq:joox:1.6.2")
  14. testImplementation("com.jayway.jsonpath:json-path:2.6.0")
  15. testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2")
  16. }
  17. tasks {
  18. test {
  19. useJUnitPlatform()
  20. }
  21. }