feat: support H2 packer

This commit is contained in:
ReaJason
2025-06-28 13:16:52 +08:00
parent aba057572c
commit b71cd4a676
22 changed files with 341 additions and 10 deletions
+9
View File
@@ -14,4 +14,13 @@ java {
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
runtimeOnly("com.h2database:h2")
}
tasks.test {
useJUnitPlatform()
}