Skip to content

Commit 004ce37

Browse files
committed
Use TOML-Specified Dependencies in Boot ACL Sample
1 parent 50b6d27 commit 004ce37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

servlet/spring-boot/java/acl/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
4-
id 'io.spring.dependency-management' version '1.1.7'
3+
alias(libs.plugins.org.springframework.boot)
4+
alias(libs.plugins.io.spring.dependency.management)
55
}
66

77
group = 'example'
@@ -27,7 +27,7 @@ dependencies {
2727
implementation 'org.hsqldb:hsqldb'
2828

2929
testImplementation 'org.springframework.boot:spring-boot-starter-test'
30-
testImplementation 'org.springframework.boot:spring-boot-security-test'
30+
testImplementation 'org.springframework.boot:spring-boot-starter-security-test'
3131
testImplementation 'org.springframework.security:spring-security-test'
3232
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
3333
}

0 commit comments

Comments
 (0)