feat: DB adjustments + connection profile #5

Merged
torge-hmn merged 3 commits from feat/db-adjustments into main 2024-11-17 19:57:39 +00:00
2 changed files with 11 additions and 8 deletions
Showing only changes of commit 60b1f0e756 - Show all commits

View file

@ -30,9 +30,8 @@ repositories {
dependencies {
implementation("org.zeroturnaround:zt-exec:1.12")
implementation("org.apache.commons:commons-lang3:3.17.0")
implementation("org.apache.commons:commons-lang3:3.17.0")implementation("org.springframework.boot:spring-boot-autoconfigure")
implementation("org.springframework.boot:spring-boot-autoconfigure")
implementation("org.springframework.boot:spring-boot-starter-jdbc")
implementation("org.xerial:sqlite-jdbc")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
@ -55,5 +54,7 @@ dependencies {
tasks.withType<Test> {
useJUnitPlatform()
systemProperty("spring.profiles.active", "test")
testLogging.showStandardStreams = true
}

View file

@ -0,0 +1,2 @@
#TODO: Use flyway for db setup
hibernate.hbm2ddl.auto=create-drop