Skip to content

Commit 623baa1

Browse files
committed
chore(deps): update SpringUserFramework to 4.0.2
Update the ds-spring-user-framework dependency from 4.0.1 to 4.0.2 and add Docker Compose support for local development. - Bump ds-spring-user-framework from 4.0.1 to 4.0.2 - Bump Spring Boot from 4.0.1 to 4.0.2 - Bump Selenide from 7.13.0 to 7.14.0 - Add spring-boot-docker-compose for local development - Add compose.yaml with MariaDB service for local development
1 parent 2aa2eac commit 623baa1

2 files changed

Lines changed: 21 additions & 3 deletions

File tree

build.gradle

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

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

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

4444
// Spring Boot starters
4545
implementation 'org.springframework.boot:spring-boot-starter-actuator'
@@ -63,6 +63,9 @@ dependencies {
6363
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client:3.5.7'
6464
runtimeOnly 'org.postgresql:postgresql'
6565

66+
// Docker Compose support for local development
67+
developmentOnly 'org.springframework.boot:spring-boot-docker-compose'
68+
6669
// Utility libraries
6770
implementation 'org.passay:passay:1.6.6'
6871
implementation 'com.google.guava:guava:33.5.0-jre'
@@ -83,7 +86,7 @@ dependencies {
8386
testImplementation 'org.springframework.boot:spring-boot-starter-security-test'
8487
testImplementation 'org.springframework.security:spring-security-test'
8588
testImplementation 'com.h2database:h2:2.4.240'
86-
testImplementation 'com.codeborne:selenide:7.13.0'
89+
testImplementation 'com.codeborne:selenide:7.14.0'
8790
testImplementation 'io.github.bonigarcia:webdrivermanager:6.3.3'
8891

8992
// OAuth2 Testing dependencies

compose.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
services:
2+
mariadb:
3+
image: mariadb:11.6
4+
environment:
5+
MARIADB_DATABASE: springuser
6+
MARIADB_USER: springuser
7+
MARIADB_PASSWORD: springuser
8+
MARIADB_ROOT_PASSWORD: rootpassword
9+
ports:
10+
- "3306:3306"
11+
volumes:
12+
- mariadb-data:/var/lib/mysql
13+
14+
volumes:
15+
mariadb-data:

0 commit comments

Comments
 (0)