diff options
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') |