Fix smack-repl build script

This commit is contained in:
vanitasvitae 2017-04-20 22:40:53 +02:00
parent 24f6d86452
commit 842cc2c2a4
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 4 additions and 2 deletions

View File

@ -16,6 +16,8 @@ dependencies {
testCompile project(path: ":smack-core", configuration: "archives")
}
task printClasspath(dependsOn: assemble) << {
println sourceSets.main.runtimeClasspath.asPath
task printClasspath(dependsOn: assemble) {
doLast {
println sourceSets.main.runtimeClasspath.asPath
}
}