From 653d9dbba75826968f4f5bf648760edefa43e51f Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 22 Mar 2019 21:53:53 +0100 Subject: [PATCH] smack-bosh: Limit jbosh to the 0.9 series akin to version.gradle --- smack-bosh/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/smack-bosh/build.gradle b/smack-bosh/build.gradle index 6a0e1c679..f686c8209 100644 --- a/smack-bosh/build.gradle +++ b/smack-bosh/build.gradle @@ -4,5 +4,7 @@ This API is considered beta quality.""" dependencies { compile project(':smack-core') - compile 'org.igniterealtime.jbosh:jbosh:[0.9.1,0.10)' + // See https://issues.igniterealtime.org/browse/SMACK-858 and + // comment in version.gradle why the specify the version this way. + compile 'org.igniterealtime.jbosh:jbosh:[0.9.1,0.9.999]' }