From 0d9e3701d4d880d3520e09723c7f4176310c5c1d Mon Sep 17 00:00:00 2001 From: Mika Bomm Date: Mon, 2 Sep 2024 19:34:45 +0200 Subject: [PATCH] comment gradle dependencies --- server/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/build.gradle b/server/build.gradle index 2e25a29..7566262 100644 --- a/server/build.gradle +++ b/server/build.gradle @@ -20,8 +20,10 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' + // Argon2 password hashing implementation 'org.springframework.security:spring-security-crypto:6.3.3' implementation 'org.bouncycastle:bcprov-jdk15on:1.70' + runtimeOnly 'org.postgresql:postgresql' testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher'