From f52531db8e0a26a04a1ddf311c53244817e7953d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Sep 2025 01:13:59 +0000 Subject: [PATCH 1/2] Initial plan From f2d255022df8d98886c66fff24d20e0f8adead59 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Sep 2025 01:18:39 +0000 Subject: [PATCH 2/2] Replace MySQL connector with PostgreSQL connector in build.gradle Co-authored-by: MaxiHubb2 <102926705+MaxiHubb2@users.noreply.github.com> --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d8e87d5..bada49a 100644 --- a/build.gradle +++ b/build.gradle @@ -51,7 +51,7 @@ dependencies { developmentOnly 'org.springframework.boot:spring-boot-devtools' runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5' runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5' - runtimeOnly 'com.mysql:mysql-connector-j' + runtimeOnly 'org.postgresql:postgresql' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.springframework.security:spring-security-test' testImplementation("com.tngtech.archunit:archunit-junit5:1.2.1")