-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
45 lines (40 loc) · 1010 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
apply plugin: 'application'
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
sourceCompatibility = 1.7
version = '0.1'
mainClassName = 'eu.geekplace.xmpp.testclient.Test'
applicationDefaultJvmArgs = ["-ea"]
repositories {
mavenLocal()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
mavenCentral()
}
configurations.all {
// check for updates every build
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
ext {
smackVersion='4.1.1'
}
dependencies {
compile ("org.igniterealtime.smack:smack-tcp:$smackVersion") {
changing = true
}
compile ("org.igniterealtime.smack:smack-extensions:$smackVersion") {
changing = true
}
compile ("org.igniterealtime.smack:smack-java7:$smackVersion") {
changing = true
}
compile ("org.igniterealtime.smack:smack-bosh:$smackVersion") {
changing = true
}
compile ("org.igniterealtime.smack:smack-sasl-provided:$smackVersion") {
changing = true
}
compile 'org.jxmpp:jxmpp-stringprep-libidn:0.4.0'
}