mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
b91978dcc4
That is XEP-0323, -0324, -0325, and -0347. SMACK-727.
21 lines
664 B
Groovy
21 lines
664 B
Groovy
ext {
|
|
scalaVersion = '2.11.7'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':smack-tcp')
|
|
compile project(':smack-bosh')
|
|
compile project(':smack-java7')
|
|
compile project(':smack-resolver-minidns')
|
|
compile project(':smack-extensions')
|
|
compile project(':smack-experimental')
|
|
compile project(':smack-legacy')
|
|
compile project(':smack-integration-test')
|
|
compile "com.lihaoyi:ammonite-repl_$scalaVersion:0.5.5"
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
|
testCompile project(path: ":smack-core", configuration: "archives")
|
|
}
|
|
|
|
task printClasspath(dependsOn: assemble) << {
|
|
println sourceSets.main.runtimeClasspath.asPath
|
|
}
|