Merge pull request #1 from Flowdalic/build-fixes

Cleanup build.gradle
This commit is contained in:
vanitasvitae 2017-04-23 11:34:47 +02:00 committed by GitHub
commit 0091e1c9d0
1 changed files with 12 additions and 17 deletions

View File

@ -1,28 +1,23 @@
apply plugin: 'java'
apply plugin: 'eclipse'
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
ext {
smackVersion="4.2.1-SNAPSHOT"
}
dependencies {
compile "xpp3:xpp3:1.1.4c"
compile "org.jxmpp:jxmpp-core:0.5.0-alpha7"
compile "org.jxmpp:jxmpp-jid:0.5.0-alpha7"
compile "org.jxmpp:jxmpp-util-cache:0.5.0-alpha7"
compile "org.jxmpp:jxmpp-stringprep-libidn:0.5.0-alpha7"
compile "org.bouncycastle:bcprov-jdk15on:1.56"
compile "org.whispersystems:signal-protocol-java:2.3.0"
compile "org.igniterealtime.smack:smack-core:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-experimental:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-extensions:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-im:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-java7:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-omemo:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-omemo-signal:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-resolver-dnsjava:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-tcp:4.2.1-SNAPSHOT"
compile "org.igniterealtime.smack:smack-java7:$smackVersion"
compile "org.igniterealtime.smack:smack-omemo-signal:$smackVersion"
compile "org.igniterealtime.smack:smack-resolver-dnsjava:$smackVersion"
compile "org.igniterealtime.smack:smack-tcp:$smackVersion"
}
jar {