1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-12 14:44:49 +02:00

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

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