From 95c3362f0f50db1b697d452f5c13ac55337dadf8 Mon Sep 17 00:00:00 2001 From: kasun Date: Mon, 23 Mar 2026 23:46:17 +0100 Subject: [PATCH] commented out spring security dependency for now --- backend/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/build.gradle.kts b/backend/build.gradle.kts index 92ecdd8..2b687dd 100644 --- a/backend/build.gradle.kts +++ b/backend/build.gradle.kts @@ -27,7 +27,7 @@ extra["springAiVersion"] = "2.0.0-M3" dependencies { implementation("org.springframework.boot:spring-boot-starter-data-jpa") - implementation("org.springframework.boot:spring-boot-starter-security") + // implementation("org.springframework.boot:spring-boot-starter-security") implementation("org.springframework.boot:spring-boot-starter-validation") implementation("org.springframework.boot:spring-boot-starter-webmvc") implementation("org.springframework.ai:spring-ai-starter-model-openai") @@ -38,7 +38,7 @@ dependencies { // developmentOnly("org.springframework.ai:spring-ai-spring-boot-docker-compose") annotationProcessor("org.projectlombok:lombok") testImplementation("org.springframework.boot:spring-boot-starter-data-jpa-test") - testImplementation("org.springframework.boot:spring-boot-starter-security-test") + // testImplementation("org.springframework.boot:spring-boot-starter-security-test") testImplementation("org.springframework.boot:spring-boot-starter-validation-test") testImplementation("org.springframework.boot:spring-boot-starter-webmvc-test") testRuntimeOnly("org.junit.platform:junit-platform-launcher")