File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
java-spring-boot-ru/first-start Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent
33
44plugins {
55 // BEGIN
6-
6+ java
7+ id(" org.springframework.boot" ) version " 3.3.5"
8+ id(" io.spring.dependency-management" ) version " 1.1.6"
79 // END
810 application
911 id(" com.github.ben-manes.versions" ) version " 0.48.0"
@@ -21,7 +23,9 @@ repositories {
2123
2224dependencies {
2325 // BEGIN
24-
26+ implementation(" org.springframework.boot:spring-boot-starter" )
27+ implementation(" org.springframework.boot:spring-boot-starter-web" )
28+ implementation(" org.springframework.boot:spring-boot-devtools" )
2529 // END
2630 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
2731 testImplementation(platform(" org.junit:junit-bom:5.10.0" ))
@@ -36,4 +40,4 @@ tasks.test {
3640 events = mutableSetOf (TestLogEvent .FAILED , TestLogEvent .PASSED , TestLogEvent .SKIPPED )
3741 showStandardStreams = true
3842 }
39- }
43+ }
You can’t perform that action at this time.
0 commit comments