💾 Setup SQLite database (#3)

* Add SQLite setup

* Add basic user entity and repository

* Adjust DB naming

* Consolidate properties
This commit is contained in:
Torge Hamann 2024-11-17 19:09:28 +01:00 committed by GitHub
parent 254f2f09ec
commit e75ac48743
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 141 additions and 0 deletions

View file

@ -24,14 +24,25 @@ repositories {
}
dependencies {
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")
implementation("org.hibernate.orm:hibernate-community-dialects")
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.flywaydb:flyway-core")
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.assertj:assertj-core")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}