1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-16 08:34:50 +02:00

Merge pull request #126 from vanitasvitae/fixReplBuildScript

Update smack-repl gradle script
This commit is contained in:
Florian Schmaus 2017-05-31 09:28:50 +02:00 committed by GitHub
commit d9e6f6130b

View file

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