From 3f82142d3aa01432f077a2dec96c8ad0163918d1 Mon Sep 17 00:00:00 2001 From: Harkamal Randhawa Date: Wed, 4 Mar 2026 17:28:41 -0700 Subject: [PATCH] Remove migrations and tests --- backend/pom.xml | 27 ---------------------- backend/src/main/resources/application.yml | 7 +----- 2 files changed, 1 insertion(+), 33 deletions(-) diff --git a/backend/pom.xml b/backend/pom.xml index 9b11bf68..cf42279b 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -49,16 +49,6 @@ runtime - - org.flywaydb - flyway-core - - - - org.flywaydb - flyway-mysql - - io.jsonwebtoken jjwt-api @@ -87,23 +77,6 @@ - - org.springframework.boot - spring-boot-starter-test - test - - - - org.springframework.security - spring-security-test - test - - - - com.h2database - h2 - test - diff --git a/backend/src/main/resources/application.yml b/backend/src/main/resources/application.yml index 07c5bff0..cd3a99f7 100644 --- a/backend/src/main/resources/application.yml +++ b/backend/src/main/resources/application.yml @@ -10,18 +10,13 @@ spring: jpa: hibernate: - ddl-auto: validate + ddl-auto: update show-sql: ${JPA_SHOW_SQL:false} properties: hibernate: format_sql: true dialect: org.hibernate.dialect.MySQLDialect - flyway: - enabled: true - baseline-on-migrate: true - locations: classpath:db/migration - server: port: ${SERVER_PORT:8080} servlet: