Skip to content

Commit 82b0956

Browse files
committed
add
1 parent f2a0777 commit 82b0956

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

java-spring-boot-ru/first-start/build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent
33

44
plugins {
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

2224
dependencies {
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+
}

0 commit comments

Comments
 (0)