2018-10-29 08:34:15 +01:00
|
|
|
plugins {
|
|
|
|
id "com.github.alisiikh.scalastyle_2.12" version "2.0.2"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'scala'
|
|
|
|
apply plugin: 'com.github.alisiikh.scalastyle_2.12'
|
|
|
|
|
2016-02-10 14:09:13 +01:00
|
|
|
ext {
|
2018-10-27 15:40:50 +02:00
|
|
|
scalaVersion = '2.12.1'
|
2016-02-10 14:09:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':smack-tcp')
|
|
|
|
compile project(':smack-bosh')
|
|
|
|
compile project(':smack-java7')
|
|
|
|
compile project(':smack-resolver-minidns')
|
2019-04-08 23:09:12 +02:00
|
|
|
compile project(':smack-resolver-minidns-dox')
|
2016-02-10 14:09:13 +01:00
|
|
|
compile project(':smack-extensions')
|
|
|
|
compile project(':smack-experimental')
|
|
|
|
compile project(':smack-legacy')
|
2016-07-20 20:57:04 +02:00
|
|
|
compile project(':smack-integration-test')
|
2019-08-04 15:28:46 +02:00
|
|
|
compile project(':smack-omemo-signal')
|
2018-10-29 08:34:15 +01:00
|
|
|
compile "org.scala-lang:scala-library:$scalaVersion"
|
2018-10-27 15:40:50 +02:00
|
|
|
compile "com.lihaoyi:ammonite_$scalaVersion:1.3.2"
|
2016-02-23 16:30:20 +01:00
|
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
2016-02-10 14:09:13 +01:00
|
|
|
}
|
|
|
|
|
2018-10-29 08:34:15 +01:00
|
|
|
scalaStyle {
|
|
|
|
config = new File(rootConfigDir, 'scalaStyle.xml')
|
|
|
|
verbose = true
|
|
|
|
failOnViolation = true
|
|
|
|
}
|
|
|
|
|
|
|
|
check.dependsOn(scalaStyleCheck)
|
|
|
|
|
2017-04-20 22:40:53 +02:00
|
|
|
task printClasspath(dependsOn: assemble) {
|
|
|
|
doLast {
|
|
|
|
println sourceSets.main.runtimeClasspath.asPath
|
|
|
|
}
|
2016-02-10 14:09:13 +01:00
|
|
|
}
|
2019-02-04 08:59:39 +01:00
|
|
|
|
|
|
|
task printXmppNioTcpConnectionStateGraph(type: JavaExec) {
|
|
|
|
classpath sourceSets.main.runtimeClasspath
|
|
|
|
main 'org.igniterealtime.smack.smackrepl.StateGraph'
|
|
|
|
}
|