diff options
| author | RncLsn <rnc.lsn@gmail.com> | 2015-05-18 18:27:32 +0100 |
|---|---|---|
| committer | RncLsn <rnc.lsn@gmail.com> | 2015-05-18 18:27:32 +0100 |
| commit | c7dbc7c61c7094ea4ec49bd630023f23b92fd9d1 (patch) | |
| tree | 45ff5a535e7d519b58d60c0c214a1f9ecc5a35ef /src/resources | |
| parent | 1b6a128137e5d7a6ff75566869232fc054afabef (diff) | |
| download | ACQuA-c7dbc7c61c7094ea4ec49bd630023f23b92fd9d1.tar.gz ACQuA-c7dbc7c61c7094ea4ec49bd630023f23b92fd9d1.zip | |
Configured Maven and improved executable class and tests.
Diffstat (limited to 'src/resources')
| -rw-r--r-- | src/resources/fly.properties | 19 | ||||
| -rw-r--r-- | src/resources/log4j.properties | 25 | ||||
| -rw-r--r-- | src/resources/lubm.properties | 20 | ||||
| -rw-r--r-- | src/resources/uobm.properties | 20 |
4 files changed, 84 insertions, 0 deletions
diff --git a/src/resources/fly.properties b/src/resources/fly.properties new file mode 100644 index 0000000..88c85c3 --- /dev/null +++ b/src/resources/fly.properties | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #ONTOLOGY variable points to the file that stores ontology of interest | ||
| 2 | ONTOLOGY=data/fly/fly_anatomy_XP_with_GJ_FC_individuals.owl | ||
| 3 | #ONTOLOGY=data/fly/fbbt_vfb_ind_pr_nr.owl | ||
| 4 | |||
| 5 | #QUERY variable points to the file that stores all queries | ||
| 6 | QUERY=data/fly/fly.sparql | ||
| 7 | #QUERY=data/fly/test.sparql | ||
| 8 | |||
| 9 | #ANSWER variable points to the file to output all answers | ||
| 10 | #ANSWER=data/fly/fly.ans | ||
| 11 | |||
| 12 | #TO_CLASSIFY switch for the optimisation to specify if the ontology is first classified by HermiT | ||
| 13 | TO_CLASSIFY=false | ||
| 14 | |||
| 15 | #CALL_HERMIT variable to specify if HermiT is called or not | ||
| 16 | CALL_HERMIT=true | ||
| 17 | |||
| 18 | #SHELL_MODE to enable query execution from console input | ||
| 19 | SHELL_MODE=false \ No newline at end of file | ||
diff --git a/src/resources/log4j.properties b/src/resources/log4j.properties new file mode 100644 index 0000000..3bfd32e --- /dev/null +++ b/src/resources/log4j.properties | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | log = . | ||
| 2 | log4j.rootLogger=DEBUG, CONSOLE, FILE_LAST, FILE | ||
| 3 | |||
| 4 | log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender | ||
| 5 | log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout | ||
| 6 | log4j.appender.CONSOLE.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %c - %m%n | ||
| 7 | log4j.appender.CONSOLE.Target=System.out | ||
| 8 | log4j.appender.CONSOLE.Threshold=INFO | ||
| 9 | |||
| 10 | log4j.appender.FILE_LAST=org.apache.log4j.RollingFileAppender | ||
| 11 | log4j.appender.FILE_LAST.File=${log}/pagoda_last_only.log | ||
| 12 | log4j.appender.FILE_LAST.MaxFileSize=10MB | ||
| 13 | log4j.appender.FILE_LAST.MaxBackupIndex=3 | ||
| 14 | log4j.appender.FILE_LAST.layout=org.apache.log4j.PatternLayout | ||
| 15 | log4j.appender.FILE_LAST.layout.conversionPattern=[%5p] %d{yyyy-MM-dd HH:mm:ss} %c - %m%n | ||
| 16 | log4j.appender.FILE_LAST.append=false | ||
| 17 | log4j.appender.FILE_LAST.Threshold=DEBUG | ||
| 18 | |||
| 19 | log4j.appender.FILE=org.apache.log4j.RollingFileAppender | ||
| 20 | log4j.appender.FILE.File=${log}/pagoda.log | ||
| 21 | log4j.appender.FILE.MaxFileSize=10MB | ||
| 22 | log4j.appender.FILE.MaxBackupIndex=3 | ||
| 23 | log4j.appender.FILE.layout=org.apache.log4j.PatternLayout | ||
| 24 | log4j.appender.FILE.layout.conversionPattern=[%5p] %d{yyyy-MM-dd HH:mm:ss} %c - %m%n | ||
| 25 | log4j.appender.FILE.Threshold=DEBUG \ No newline at end of file | ||
diff --git a/src/resources/lubm.properties b/src/resources/lubm.properties new file mode 100644 index 0000000..73ed470 --- /dev/null +++ b/src/resources/lubm.properties | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #DATA variable points to the file that stores data | ||
| 2 | DATA=data/lubm/lubm1.ttl | ||
| 3 | |||
| 4 | #ONTOLOGY variable points to the file that stores ontology of interest | ||
| 5 | ONTOLOGY=data/lubm/univ-bench.owl | ||
| 6 | |||
| 7 | #QUERY variable points to the file that stores all queries | ||
| 8 | QUERY=data/lubm/lubm.sparql | ||
| 9 | |||
| 10 | #ANSWER variable points to the file to output all answers | ||
| 11 | #ANSWER=data/lubm/lubm.ans | ||
| 12 | |||
| 13 | #TO_CLASSIFY switch for the optimisation to specify if the ontology is first classified by HermiT | ||
| 14 | TO_CLASSIFY=true | ||
| 15 | |||
| 16 | #CALL_HERMIT variable to specify if HermiT is called or not | ||
| 17 | CALL_HERMIT=true | ||
| 18 | |||
| 19 | #SHELL_MODE to enable query execution from console input | ||
| 20 | SHELL_MODE=false \ No newline at end of file | ||
diff --git a/src/resources/uobm.properties b/src/resources/uobm.properties new file mode 100644 index 0000000..acbe78e --- /dev/null +++ b/src/resources/uobm.properties | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #DATA variable points to the file that stores data | ||
| 2 | DATA=data/uobm/uobm1.ttl | ||
| 3 | |||
| 4 | #ONTOLOGY variable points to the file that stores ontology of interest | ||
| 5 | ONTOLOGY=data/uobm/univ-bench-dl.owl | ||
| 6 | |||
| 7 | #QUERY variable points to the file that stores all queries | ||
| 8 | QUERY=data/uobm/uobm.sparql | ||
| 9 | |||
| 10 | #ANSWER variable points to the file to output all answers | ||
| 11 | #ANSWER=data/uobm/uobm.ans | ||
| 12 | |||
| 13 | #TO_CLASSIFY switch for the optimisation to specify if the ontology is first classified by HermiT | ||
| 14 | TO_CLASSIFY=true | ||
| 15 | |||
| 16 | #CALL_HERMIT variable to specify if HermiT is called or not | ||
| 17 | CALL_HERMIT=true | ||
| 18 | |||
| 19 | #SHELL_MODE to enable query execution from console input | ||
| 20 | SHELL_MODE=false \ No newline at end of file | ||
