Skip to content

Commit

Permalink
Cleanup: use api configuration
Browse files Browse the repository at this point in the history
This helps IntelliJ recognize tests.
  • Loading branch information
rpost committed Apr 4, 2023
1 parent 699371c commit 48cc79c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions spring-boot-tests/h2/build.gradle
Original file line number Diff line number Diff line change
@@ -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(":")
}

0 comments on commit 48cc79c

Please sign in to comment.