Add log file and skeleton code for visualization data

This commit is contained in:
2019-01-23 13:52:48 -08:00
parent cc3ebca12f
commit ba275b98fc
5 changed files with 75 additions and 5 deletions

View File

@ -41,6 +41,13 @@ run {
}
}
task runViz(type: JavaExec) {
dependsOn classes
systemProperty 'logback.configurationFile', 'src/main/resources/logback.xml'
classpath sourceSets.main.runtimeClasspath
main = 'Viz'
}
testlogger {
theme 'standard'
showStandardStreams true