Skip to content

Commit

Permalink
fix test warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lony2003 committed May 28, 2024
1 parent 13e7ff5 commit 989186e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions dapr-client-spring-boot-starter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ dependencies {
api('org.springframework.boot:spring-boot-starter')

api project(":dapr-dependencies-spring-boot")

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
3 changes: 3 additions & 0 deletions dapr-dependencies-spring-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ version = projectVersion
dependencies {
api("io.dapr:dapr-sdk:${daprVersion}")
api("io.dapr:dapr-sdk-springboot3:${daprVersion}")

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
3 changes: 3 additions & 0 deletions dapr-openfeign-spring-boot-starter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ dependencies {
api("org.springframework.cloud:spring-cloud-starter-openfeign")
api project(":feign-dapr-client")
api project(":dapr-client-spring-boot-starter")

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
3 changes: 3 additions & 0 deletions dapr-secretstore-spring-boot-starter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ version = projectVersion
dependencies {
annotationProcessor 'org.springframework.boot:spring-boot-autoconfigure-processor'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
4 changes: 2 additions & 2 deletions feign-dapr-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ dependencies {
api("io.dapr:dapr-sdk:${daprVersion}")
api("io.github.openfeign:feign-core")

testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'io.github.openfeign:feign-jaxrs'
testImplementation 'io.github.openfeign:feign-core'

testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

0 comments on commit 989186e

Please sign in to comment.