Skip to content

Commit 6e7b961

Browse files
committed
Part 25: Add build.gradle in myfirst-logging-spring-boot-starter module
1 parent 4682f2b commit 6e7b961

File tree

1 file changed

+28
-0
lines changed
  • Spring_part_25/myfirst-logging-spring-boot-starter

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
}

0 commit comments

Comments
 (0)