mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-09-09 18:29:45 +02:00
Add a REPL for Smack (smack-repl)
This commit is contained in:
parent
529e1eb058
commit
8f149346a6
6 changed files with 111 additions and 1 deletions
18
smack-repl/build.gradle
Normal file
18
smack-repl/build.gradle
Normal file
|
@ -0,0 +1,18 @@
|
|||
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 "org.scala-lang:scala-compiler:${scalaVersion}"
|
||||
}
|
||||
|
||||
task printClasspath(dependsOn: assemble) << {
|
||||
println sourceSets.main.runtimeClasspath.asPath
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue