2018-06-01 15:55:00 +02:00
|
|
|
group 'de.vanitasvitae.oxclient'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
2018-07-19 18:51:22 +02:00
|
|
|
smackVersion="4.4.0-alpha2-SNAPSHOT"
|
2018-06-01 15:55:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile "org.igniterealtime.smack:smack-core:$smackVersion"
|
|
|
|
compile "org.igniterealtime.smack:smack-java7:$smackVersion"
|
|
|
|
compile "org.igniterealtime.smack:smack-resolver-dnsjava:$smackVersion"
|
|
|
|
compile "org.igniterealtime.smack:smack-tcp:$smackVersion"
|
|
|
|
compile "org.igniterealtime.smack:smack-openpgp:$smackVersion"
|
|
|
|
compile "org.igniterealtime.smack:smack-experimental:$smackVersion"
|
|
|
|
}
|