Change jxmpp version to 0.4.1-alpha2-SNAPSHOT

Mostly because of 738276e1aca093da16ea160462bdda7523a26a14 in jxmpp,
which fixes fractional seconds parsing.

Which made also the slight change in DelayInformationTest necessary.
This commit is contained in:
Florian Schmaus 2014-12-12 11:38:56 +01:00
parent d5c7a2cad3
commit b5c9bb2611
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ public class DelayInformationTest extends InitExtensions {
delayInfo = (DelayInformation) p.parse(PacketParserUtils.getParserFor(control));
GregorianCalendar cal = (GregorianCalendar) calendar.clone();
cal.add(Calendar.MILLISECOND, 12);
cal.add(Calendar.MILLISECOND, 120);
assertEquals(cal.getTime(), delayInfo.getStamp());
// XEP-0082 date format without milliseconds

View File

@ -2,7 +2,7 @@ allprojects {
ext {
shortVersion = '4.1.0-alpha7'
isSnapshot = true
jxmppVersion = "0.4.0"
jxmppVersion = "0.4.1-alpha2-SNAPSHOT"
smackMinAndroidSdk = 8
}
}