Browse Source

Refine test module dependencies

See gh-46356
See gh-47322
pull/47381/head
Phillip Webb 3 months ago
parent
commit
0ae23de2b5
  1. 1
      module/spring-boot-data-jpa-test/build.gradle
  2. 2
      module/spring-boot-jooq-test/build.gradle
  3. 1
      module/spring-boot-jpa-test/build.gradle

1
module/spring-boot-data-jpa-test/build.gradle

@ -26,7 +26,6 @@ description = "Spring Boot Data JPA Test" @@ -26,7 +26,6 @@ description = "Spring Boot Data JPA Test"
dependencies {
api(project(":core:spring-boot-test-autoconfigure"))
api(project(":module:spring-boot-data-jpa"))
api(project(":module:spring-boot-jdbc-test"))
api(project(":module:spring-boot-jpa-test"))
optional(project(":core:spring-boot-testcontainers"))

2
module/spring-boot-jooq-test/build.gradle

@ -25,10 +25,10 @@ description = "Spring Boot jOOQ Test" @@ -25,10 +25,10 @@ description = "Spring Boot jOOQ Test"
dependencies {
api(project(":core:spring-boot-test-autoconfigure"))
api(project(":module:spring-boot-jdbc-test"))
api(project(":module:spring-boot-jooq"))
optional(project(":core:spring-boot-testcontainers"))
optional(project(":module:spring-boot-jdbc-test"))
optional("org.junit.jupiter:junit-jupiter-api")
testImplementation(project(":module:spring-boot-flyway"))

1
module/spring-boot-jpa-test/build.gradle

@ -25,6 +25,7 @@ description = "Spring Boot JPA Test" @@ -25,6 +25,7 @@ description = "Spring Boot JPA Test"
dependencies {
api(project(":core:spring-boot-test-autoconfigure"))
api(project(":module:spring-boot-jdbc-test"))
api(project(":module:spring-boot-jpa"))
optional(project(":core:spring-boot-autoconfigure"))

Loading…
Cancel
Save