commit 221186250ff6e827c5a60fff6f5d2c9bcfe1215d parent 959b72ad103c5ad4b4ba24cc65dc4731fcfe05fd Author: Daniel Gultsch <daniel@gultsch.de> Date: Wed, 23 Aug 2017 17:58:53 +0200 version bump to 0.2.1 Diffstat:
M | README.md | | | 2 | +- |
M | pom.xml | | | 2 | +- |
M | runall.sh | | | 2 | +- |
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md @@ -15,7 +15,7 @@ This tool helps you to asses if your server supports those compliance profiles. ## Usage -Download the compiled [ComplianceTester-0.2.jar](https://gultsch.de/files/ComplianceTester-0.2.jar) or build with ```mvn package``` (needs Java 8) +Download the compiled [ComplianceTester-0.2.1.jar](https://gultsch.de/files/ComplianceTester-0.2.1.jar) or build with ```mvn package``` (needs Java 8) Run with ```java -jar target/ComplianceTester-0.1.jar username@domain password``` diff --git a/pom.xml b/pom.xml @@ -6,7 +6,7 @@ <groupId>eu.siacs</groupId> <artifactId>ComplianceTester</artifactId> - <version>0.2</version> + <version>0.2.1</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.2.jar $account > reports/$server.txt& + java -jar target/ComplianceTester-0.2.1.jar $account > reports/$server.txt& pwait 5 done;