diff options
author | Vitaly Takmazov | 2017-10-04 13:50:30 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-10-04 13:50:30 +0300 |
commit | a33ffed053db33a9abd425cd7d641f47e6ab8651 (patch) | |
tree | d137ea5b659118e93d0ee6c154477fa7c743235c /juick-xmpp/build.gradle | |
parent | 50236d510bdd6a3433821979b475cb5583e1a63b (diff) |
xmpp: xmlpull package is out of date
Diffstat (limited to 'juick-xmpp/build.gradle')
-rw-r--r-- | juick-xmpp/build.gradle | 6 |
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') |