2016-02-10 14:09:13 +01:00
|
|
|
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')
|
2016-07-20 20:57:04 +02:00
|
|
|
compile project(':smack-integration-test')
|
2016-12-08 08:29:36 +01:00
|
|
|
compile "com.lihaoyi:ammonite_$scalaVersion:0.8.0"
|
2016-02-23 16:30:20 +01:00
|
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
|
|
|
testCompile project(path: ":smack-core", configuration: "archives")
|
2016-02-10 14:09:13 +01:00
|
|
|
}
|
|
|
|
|
2017-04-20 22:40:53 +02:00
|
|
|
task printClasspath(dependsOn: assemble) {
|
|
|
|
doLast {
|
|
|
|
println sourceSets.main.runtimeClasspath.asPath
|
|
|
|
}
|
2016-02-10 14:09:13 +01:00
|
|
|
}
|