Strabon
diff scripts/storeTriples.sh @ 934:ee65be1e0648
Modified the version of each artifact from xx.xx.xx-SNAPSHOT to xx.xx.xx-BranchName-SNAPSHOT.
As a result, each branch produces its own artifacts that are independent from the artifacts produced by different branches.
NOTE: After updating the source code of Strabon to the current revision, you need to update the eclipse projects to use the new pom.xml files.
As a result, each branch produces its own artifacts that are independent from the artifacts produced by different branches.
NOTE: After updating the source code of Strabon to the current revision, you need to update the eclipse projects to use the new pom.xml files.
author | Kostis Kyzirakos <kkyzir@di.uoa.gr> |
---|---|
date | Wed Mar 27 12:24:59 2013 +0200 (2013-03-27) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/scripts/storeTriples.sh Wed Mar 27 12:24:59 2013 +0200 1.3 @@ -0,0 +1,10 @@ 1.4 +#! /bin/bash 1.5 + 1.6 +echo > log.out 1.7 + 1.8 +for f in `ls /home/ggarbis/out_triples/HMSG2_IR_039_s7_070825_*n3 | sort`; do 1.9 + echo "Storing: $f" >> log.out 1.10 + echo "Executing: ./endpoint store http://pathway.di.uoa.gr:8080/strabonTest/ N3 -u file://$f" >> log.out 1.11 + ./endpoint store http://localhost:8080/strabonTest/ N3 -u file://$f >> log.out 1.12 +done 1.13 +