safedb 디버깅

This commit is contained in:
Rinjae
2025-09-25 18:00:40 +09:00
parent 8952dc4423
commit 4225a89be5
2 changed files with 11 additions and 9 deletions
+9 -7
View File
@@ -210,15 +210,17 @@ tasks.test {
if (project.hasProperty("safedb")) {
println "======================== SafeDB Classpath applied to test task ====================="
classpath += files(
"/safedb/JavaAPI/config/",
"/safedb/JavaAPI/lib/*"
)
classpath += files("/safedb/JavaAPI/config")
classpath += fileTree(dir: "/safedb/JavaAPI/lib", include: ["*.jar"])
println "classpath : ${classpath}"
classpath.each { println "classpath : $it" }
systemProperty "safedb", project.hasProperty("safedb")
println "project.property : ${systemProperty("safedb", null)}"
systemProperty "safedb", project.property("safedb")
println "systemProperty \"safedb\", ${project.property("safedb")}"
println "-------------------------------------------------------------------------------------"
testLogging {
showStandardStreams = true
}
}
}