safedb 디버깅
This commit is contained in:
+9
-7
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user