commit a0b1fcd7253221ffdcf58906a52877e9f178afc7
parent 8a4d31cd3f646bc6ec5ba8e77106e978a146ed01
Author: Daniel Gultsch <daniel@gultsch.de>
Date: Wed, 23 Aug 2017 17:00:30 +0200
version bump to 0.2
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
@@ -6,7 +6,7 @@
<groupId>eu.siacs</groupId>
<artifactId>ComplianceTester</artifactId>
- <version>0.1</version>
+ <version>0.2</version>
<packaging>jar</packaging>
<dependencies>
diff --git a/runall.sh b/runall.sh
@@ -7,7 +7,7 @@ function pwait() {
for account in `grep entry accounts.xml | awk -F '"' '{print $2}'`; do
server=$(echo $account | awk -F '@' '{print $2}')
echo "testing $server"
- java -jar target/ComplianceTester-0.1.jar $account > reports/$server.txt&
+ java -jar target/ComplianceTester-0.2.jar $account > reports/$server.txt&
pwait 5
done;