Skip to content

Commit 8c0e574

Browse files
committed
Add JPA dependency with H2 and SQLite
1 parent 7b2c962 commit 8c0e574

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

simulator/build.gradle.kts

+6
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,18 @@ repositories {
2929

3030
dependencies {
3131
implementation("org.springframework.boot:spring-boot-starter-web")
32+
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
3233
compileOnly("org.projectlombok:lombok")
3334
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
3435
annotationProcessor("org.projectlombok:lombok")
3536
testImplementation("org.springframework.boot:spring-boot-starter-test")
3637
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
3738
implementation("org.springframework.boot:spring-boot-starter-validation")
39+
runtimeOnly("com.h2database:h2")
40+
implementation("org.xerial:sqlite-jdbc:3.34.0")
41+
42+
// sqlite dialect
43+
//implementation("org.hibernate:hibernate-community-dialects:5.6.3.Final")
3844

3945
//implementation("org.springdoc:springdoc-openapi-ui:1.8.0")
4046
// either API (just documentation) or API + UI (documentation + Swagger UI)

0 commit comments

Comments
 (0)