mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
e98d42790a
This commit adds - SmackReactor / NIO - a framework for finite state machine connections - support for Java 8 - pretty printed XML debug output It also - reworks the integration test framework - raises the minimum Android API level to 19 - introduces XmppNioTcpConnection Furthermore fixes SMACK-801 (at least partly). Java 8 language features are available, but not all runtime library methods. For that we would need to raise the Android API level to 24 or higher.
44 lines
1.2 KiB
Groovy
44 lines
1.2 KiB
Groovy
plugins {
|
|
id "com.github.alisiikh.scalastyle_2.12" version "2.0.2"
|
|
}
|
|
|
|
apply plugin: 'scala'
|
|
apply plugin: 'com.github.alisiikh.scalastyle_2.12'
|
|
|
|
ext {
|
|
scalaVersion = '2.12.1'
|
|
}
|
|
|
|
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 project(':smack-integration-test')
|
|
compile "org.scala-lang:scala-library:$scalaVersion"
|
|
compile "com.lihaoyi:ammonite_$scalaVersion:1.3.2"
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
|
testCompile project(path: ":smack-core", configuration: "archives")
|
|
}
|
|
|
|
scalaStyle {
|
|
config = new File(rootConfigDir, 'scalaStyle.xml')
|
|
verbose = true
|
|
failOnViolation = true
|
|
}
|
|
|
|
check.dependsOn(scalaStyleCheck)
|
|
|
|
task printClasspath(dependsOn: assemble) {
|
|
doLast {
|
|
println sourceSets.main.runtimeClasspath.asPath
|
|
}
|
|
}
|
|
|
|
task printXmppNioTcpConnectionStateGraph(type: JavaExec) {
|
|
classpath sourceSets.main.runtimeClasspath
|
|
main 'org.igniterealtime.smack.smackrepl.StateGraph'
|
|
}
|