mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
21 lines
659 B
Groovy
21 lines
659 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_$scalaVersion:0.8.0"
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
|
testCompile project(path: ":smack-core", configuration: "archives")
|
|
}
|
|
|
|
task printClasspath(dependsOn: assemble) << {
|
|
println sourceSets.main.runtimeClasspath.asPath
|
|
}
|