From a415a90ac7c4016c5d423de069e0e33e38bcc6a8 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Wed, 9 May 2018 19:44:10 +0200 Subject: [PATCH] Bump xmlunit to 2.6.0 --- smack-core/build.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/smack-core/build.gradle b/smack-core/build.gradle index cb58736b2..94ae22e55 100644 --- a/smack-core/build.gradle +++ b/smack-core/build.gradle @@ -6,6 +6,10 @@ apply plugin: 'osgi' description = """\ Smack core components.""" +ext { + xmlUnitVersion = "2.6.0" +} + dependencies { compile 'xpp3:xpp3:1.1.4c' compile "org.jxmpp:jxmpp-core:$jxmppVersion" @@ -13,7 +17,8 @@ dependencies { compile "org.minidns:minidns-core:$miniDnsVersion" testCompile "org.jxmpp:jxmpp-jid:$jxmppVersion:tests" testCompile "junit:junit:$junitVersion" - testCompile 'xmlunit:xmlunit:1.5' + testCompile "org.xmlunit:xmlunit-core:$xmlUnitVersion" + testCompile "org.xmlunit:xmlunit-legacy:$xmlUnitVersion" testCompile "org.powermock:powermock-module-junit4:1.6.4" testCompile "org.powermock:powermock-module-junit4-rule:1.6.4" testCompile "org.powermock:powermock-api-mockito:1.6.4"