aboutsummaryrefslogtreecommitdiff
path: root/juick-xmpp
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2017-10-04 13:50:30 +0300
committerGravatar Vitaly Takmazov2017-10-04 13:50:30 +0300
commita33ffed053db33a9abd425cd7d641f47e6ab8651 (patch)
treed137ea5b659118e93d0ee6c154477fa7c743235c /juick-xmpp
parent50236d510bdd6a3433821979b475cb5583e1a63b (diff)
xmpp: xmlpull package is out of date
Diffstat (limited to 'juick-xmpp')
-rw-r--r--juick-xmpp/build.gradle6
1 files changed, 4 insertions, 2 deletions
diff --git a/juick-xmpp/build.gradle b/juick-xmpp/build.gradle
index 3f2a5ede..0da3231a 100644
--- a/juick-xmpp/build.gradle
+++ b/juick-xmpp/build.gradle
@@ -5,8 +5,10 @@ apply plugin: 'org.akhikhl.gretty'
dependencies {
compile project(':juick-server-jdbc')
compile project(':juick-server-web')
- compile 'com.github.juick:com.juick.xmpp:2283c14183'
- providedCompile 'xpp3:xpp3_min:1.1.4c'
+ compile ('com.github.juick:com.juick.xmpp:2283c14183') {
+ exclude group: 'xmlpull'
+ }
+ providedCompile 'xpp3:xpp3:1.1.4c'
testCompile project(path: ':juick-core', configuration: 'testArtifacts')
testCompile project(path: ':juick-server-web', configuration: 'testArtifacts')
testCompile project(path: ':juick-server-jdbc', configuration: 'testArtifacts')