xmpp-compliance-tester

XMPP Compliance Tester, forked from github.com/iNPUTmice/ComplianceTester
git clone https://git.in0rdr.ch/xmpp-compliance-tester.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

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:
MREADME.md | 2+-
Mpom.xml | 2+-
Mrunall.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;