From e9a855e0b2dd0170161c93d7d39050d1bdd5ab7c Mon Sep 17 00:00:00 2001 From: Tim Wundenberg Date: Fri, 7 Nov 2025 20:41:24 +0100 Subject: [PATCH] fix: remove spring-security for the time being --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 2c5e94d..386f16c 100644 --- a/build.gradle +++ b/build.gradle @@ -26,15 +26,15 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-actuator' - implementation 'org.springframework.boot:spring-boot-starter-security' + // implementation 'org.springframework.boot:spring-boot-starter-security' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'io.github.wimdeblauwe:htmx-spring-boot-thymeleaf:4.0.1' - implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6' + // implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6' compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' testImplementation 'org.springframework.boot:spring-boot-starter-test' - testImplementation 'org.springframework.security:spring-security-test' + // testImplementation 'org.springframework.security:spring-security-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' }