File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Spring_part_25/myfirst-logging-spring-boot-starter Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id " org.springframework.boot" version " 3.2.3"
3
+ id " io.spring.dependency-management" version " 1.1.4"
4
+ id " io.freefair.lombok" version " 8.3"
5
+ id ' java'
6
+ }
7
+
8
+ group ' spring.oldboy'
9
+ version ' 1.0-SNAPSHOT'
10
+
11
+ repositories {
12
+ mavenCentral()
13
+ }
14
+
15
+ dependencies {
16
+
17
+ implementation ' org.springframework.boot:spring-boot-starter-aop'
18
+ implementation ' org.springframework.boot:spring-boot-starter-data-jpa'
19
+
20
+ annotationProcessor ' org.springframework.boot:spring-boot-autoconfigure-processor'
21
+ annotationProcessor ' org.springframework.boot:spring-boot-configuration-processor'
22
+
23
+ testImplementation ' org.springframework.boot:spring-boot-starter-test'
24
+ }
25
+
26
+ test {
27
+ useJUnitPlatform()
28
+ }
You can’t perform that action at this time.
0 commit comments