Initial commit
This commit is contained in:
commit
7d3788df54
9 changed files with 585 additions and 0 deletions
28
build.gradle
Normal file
28
build.gradle
Normal file
|
@ -0,0 +1,28 @@
|
|||
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 {
|
||||
smackVersion="4.4.0-alpha1-SNAPSHOT"
|
||||
}
|
||||
|
||||
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-openpgp-bouncycastle:$smackVersion"
|
||||
compile "org.igniterealtime.smack:smack-experimental:$smackVersion"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue