1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-11 14:17:08 +02:00
Smack/smack-repl/build.gradle
2016-12-08 08:29:48 +01:00

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