Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit e9e2169

Browse files
Adjusted compile scope of dependencies
Adjusted the compile scope of dependencies in the voyager spring boot project as per @oliemansm suggestion.
1 parent 32dc526 commit e9e2169

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

voyager-spring-boot-autoconfigure/build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,12 @@ dependencies{
2121

2222
compile "org.springframework.boot:spring-boot-autoconfigure:$LIB_SPRING_BOOT_VER"
2323
compile "org.apache.commons:commons-text:1.1"
24-
compile "org.springframework.boot:spring-boot-starter-web:$LIB_SPRING_BOOT_VER"
25-
compile "org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER"
2624

25+
compileOnly "org.springframework.boot:spring-boot-starter-web:$LIB_SPRING_BOOT_VER"
26+
compileOnly "org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER"
27+
28+
testCompile "org.springframework.boot:spring-boot-starter-web:$LIB_SPRING_BOOT_VER"
29+
testCompile "org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER"
2730
testCompile "org.springframework.boot:spring-boot-starter-test:$LIB_SPRING_BOOT_VER"
2831
}
2932

0 commit comments

Comments
 (0)