diff --git a/spring-boot-tests/h2/build.gradle b/spring-boot-tests/h2/build.gradle index 03bd0ec..c31d5f7 100644 --- a/spring-boot-tests/h2/build.gradle +++ b/spring-boot-tests/h2/build.gradle @@ -1,6 +1,10 @@ +plugins { + id "java-library" +} + dependencies { - implementation platform("org.springframework.boot:spring-boot-dependencies:2.6.14") - implementation "org.springframework.boot:spring-boot-starter-test" - implementation "org.springframework.boot:spring-boot-starter-data-jpa" + api platform("org.springframework.boot:spring-boot-dependencies:2.6.14") + api "org.springframework.boot:spring-boot-starter-test" + api "org.springframework.boot:spring-boot-starter-data-jpa" implementation project(":") }