diff --git a/backend/build.gradle.kts b/backend/build.gradle.kts index 56e47ee..c5abb42 100644 --- a/backend/build.gradle.kts +++ b/backend/build.gradle.kts @@ -46,17 +46,24 @@ dependencies { 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") + compileOnly("org.projectlombok:lombok") + developmentOnly("org.springframework.boot:spring-boot-devtools") + runtimeOnly("org.postgresql:postgresql") + 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-validation-test") testImplementation("org.springframework.boot:spring-boot-starter-webmvc-test") - testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation("org.wiremock:wiremock-standalone:$wiremockVersion") - testImplementation("org.springframework.boot:spring-boot-starter-session-jdbc-test")} + testImplementation("org.springframework.boot:spring-boot-starter-session-jdbc-test") + + testRuntimeOnly("org.junit.platform:junit-platform-launcher") +} dependencyManagement { imports {