2018-10-29 08:34:15 +01:00
|
|
|
plugins {
|
|
|
|
id "com.github.alisiikh.scalastyle_2.12" version "2.0.2"
|
|
|
|
}
|
|
|
|
|
2020-05-21 09:47:02 +02:00
|
|
|
description = """\
|
|
|
|
A REPL (Read-Eval-Print-Loop) for Smack, or, in other words, a CLI (Command Line Interface) for Smack."""
|
|
|
|
|
2018-10-29 08:34:15 +01:00
|
|
|
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 {
|
2020-04-04 13:03:31 +02:00
|
|
|
// Smack's integration test framework (sintest) depends on
|
|
|
|
// smack-java*-full and since we may want to use parts of sinttest
|
|
|
|
// in the REPL, we simply depend sinttest.
|
|
|
|
api project(':smack-integration-test')
|
2020-06-16 13:58:27 +02:00
|
|
|
api project(':smack-omemo-signal')
|
2020-04-04 13:03:31 +02:00
|
|
|
|
2021-04-14 19:24:30 +02:00
|
|
|
implementation "org.scala-lang:scala-library:$scalaVersion"
|
|
|
|
implementation "com.lihaoyi:ammonite_$scalaVersion:1.3.2"
|
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
|
|
|
}
|