Skip to content

Commit bc86e3b

Browse files
committed
chore(deps): update dependencies to latest versions
Update project dependencies: - Spring Boot: 4.0.0 → 4.0.1 - ds-spring-user-framework: 4.0.0 → 4.0.1 - com.github.ben-manes.versions: 0.52.0 → 0.53.0 - mariadb-java-client: 3.5.5 → 3.5.7 - guava: 33.4.8-jre → 33.5.0-jre - h2: 2.3.232 → 2.4.240 - selenide: 7.10.0 → 7.13.0 - webdrivermanager: 6.3.1 → 6.3.3 Also removes deprecated bootJar launchScript configuration that was removed in Spring Boot 4.
1 parent b7d90f3 commit bc86e3b

1 file changed

Lines changed: 8 additions & 13 deletions

File tree

build.gradle

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '4.0.0'
3+
id 'org.springframework.boot' version '4.0.1'
44
id 'io.spring.dependency-management' version '1.1.7'
5-
id "com.github.ben-manes.versions" version "0.52.0"
5+
id "com.github.ben-manes.versions" version "0.53.0"
66

77
}
88

@@ -39,7 +39,7 @@ repositories {
3939

4040
dependencies {
4141
// DigitalSanctuary Spring User Framework
42-
implementation 'com.digitalsanctuary:ds-spring-user-framework:4.0.0'
42+
implementation 'com.digitalsanctuary:ds-spring-user-framework:4.0.1'
4343

4444
// Spring Boot starters
4545
implementation 'org.springframework.boot:spring-boot-starter-actuator'
@@ -60,12 +60,12 @@ dependencies {
6060

6161
// Runtime dependencies
6262
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
63-
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client:3.5.5'
63+
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client:3.5.7'
6464
runtimeOnly 'org.postgresql:postgresql'
6565

6666
// Utility libraries
6767
implementation 'org.passay:passay:1.6.6'
68-
implementation 'com.google.guava:guava:33.4.8-jre'
68+
implementation 'com.google.guava:guava:33.5.0-jre'
6969
implementation 'jakarta.validation:jakarta.validation-api:3.1.1'
7070
implementation 'org.hibernate.validator:hibernate-validator:8.0.2.Final'
7171

@@ -82,9 +82,9 @@ dependencies {
8282
testImplementation 'org.springframework.boot:spring-boot-webmvc-test'
8383
testImplementation 'org.springframework.boot:spring-boot-starter-security-test'
8484
testImplementation 'org.springframework.security:spring-security-test'
85-
testImplementation 'com.h2database:h2:2.3.232'
86-
testImplementation 'com.codeborne:selenide:7.10.0'
87-
testImplementation 'io.github.bonigarcia:webdrivermanager:6.3.1'
85+
testImplementation 'com.h2database:h2:2.4.240'
86+
testImplementation 'com.codeborne:selenide:7.13.0'
87+
testImplementation 'io.github.bonigarcia:webdrivermanager:6.3.3'
8888

8989
// OAuth2 Testing dependencies
9090
testImplementation 'com.github.tomakehurst:wiremock-jre8-standalone:3.0.1'
@@ -113,11 +113,6 @@ tasks.register('uiTest', Test) {
113113
shouldRunAfter test
114114
}
115115

116-
117-
bootJar {
118-
// launchScript removed in Spring Boot 4 - use systemd or other init systems instead
119-
}
120-
121116
bootRun {
122117
// Use Spring Boot DevTool only when we run Gradle bootRun task
123118
classpath = sourceSets.main.runtimeClasspath + configurations.developmentOnly

0 commit comments

Comments
 (0)