safedb test 태스크 추가

This commit is contained in:
Rinjae
2025-09-25 16:47:08 +09:00
parent 6893c78d04
commit dc5f9e6835
+13
View File
@@ -192,4 +192,17 @@ idea {
generatedSourceDirs.add(file(generatedTestJavaDir))
}
}
tasks.register("safedbTest", Test) {
description = "SafeDB 설치된 환경에서 동작 테스트"
group = "verification"
testClassesDirs = sourceSets.test.output.classesDirs
classPath = sourceSets.test.runtimeClasspath
classPath += files(
"/safedb/JavaAPI/config/",
"/safedb/JavaAPI/lib/*"
)
}