1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 08:34:50 +02:00
Smack/smack-repl/build.gradle
Florian Schmaus b91978dcc4 Add (partial) support for IoT XEPs
That is XEP-0323, -0324, -0325, and -0347.

SMACK-727.
2016-07-21 08:51:11 +02:00

22 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
}