mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
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:
parent
d5c7a2cad3
commit
b5c9bb2611
2 changed files with 2 additions and 2 deletions
|
@ -112,7 +112,7 @@ public class DelayInformationTest extends InitExtensions {
|
||||||
delayInfo = (DelayInformation) p.parse(PacketParserUtils.getParserFor(control));
|
delayInfo = (DelayInformation) p.parse(PacketParserUtils.getParserFor(control));
|
||||||
|
|
||||||
GregorianCalendar cal = (GregorianCalendar) calendar.clone();
|
GregorianCalendar cal = (GregorianCalendar) calendar.clone();
|
||||||
cal.add(Calendar.MILLISECOND, 12);
|
cal.add(Calendar.MILLISECOND, 120);
|
||||||
assertEquals(cal.getTime(), delayInfo.getStamp());
|
assertEquals(cal.getTime(), delayInfo.getStamp());
|
||||||
|
|
||||||
// XEP-0082 date format without milliseconds
|
// XEP-0082 date format without milliseconds
|
||||||
|
|
|
@ -2,7 +2,7 @@ allprojects {
|
||||||
ext {
|
ext {
|
||||||
shortVersion = '4.1.0-alpha7'
|
shortVersion = '4.1.0-alpha7'
|
||||||
isSnapshot = true
|
isSnapshot = true
|
||||||
jxmppVersion = "0.4.0"
|
jxmppVersion = "0.4.1-alpha2-SNAPSHOT"
|
||||||
smackMinAndroidSdk = 8
|
smackMinAndroidSdk = 8
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue