mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
38 lines
956 B
Groovy
38 lines
956 B
Groovy
plugins {
|
|
id "com.github.alisiikh.scalastyle_2.12" version "2.0.2"
|
|
}
|
|
|
|
description = """\
|
|
A REPL (Read-Eval-Print-Loop) for Smack, or, in other words, a CLI (Command Line Interface) for Smack."""
|
|
|
|
apply plugin: 'scala'
|
|
apply plugin: 'com.github.alisiikh.scalastyle_2.12'
|
|
|
|
ext {
|
|
scalaVersion = '2.12.1'
|
|
}
|
|
|
|
dependencies {
|
|
// 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')
|
|
api project(':smack-omemo-signal')
|
|
|
|
compile "org.scala-lang:scala-library:$scalaVersion"
|
|
compile "com.lihaoyi:ammonite_$scalaVersion:1.3.2"
|
|
}
|
|
|
|
scalaStyle {
|
|
config = new File(rootConfigDir, 'scalaStyle.xml')
|
|
verbose = true
|
|
failOnViolation = true
|
|
}
|
|
|
|
check.dependsOn(scalaStyleCheck)
|
|
|
|
task printClasspath(dependsOn: assemble) {
|
|
doLast {
|
|
println sourceSets.main.runtimeClasspath.asPath
|
|
}
|
|
}
|