2014-09-22 09:58:09 +02:00
|
|
|
description = """\
|
|
|
|
Extra Smack extensions for Android."""
|
|
|
|
|
|
|
|
// Note that the test dependencies (junit, …) are inferred from the
|
|
|
|
// sourceSet.test of the core subproject
|
|
|
|
dependencies {
|
2014-09-24 12:48:01 +02:00
|
|
|
compile project(':smack-android')
|
2014-09-22 09:58:09 +02:00
|
|
|
compile project(':smack-extensions')
|
|
|
|
}
|
2018-10-07 09:55:36 +02:00
|
|
|
|
|
|
|
if (JavaVersion.current().isJava8Compatible()) {
|
|
|
|
tasks.withType(Javadoc) {
|
|
|
|
// Treat warnings as errors.
|
|
|
|
// See also https://bugs.openjdk.java.net/browse/JDK-8200363
|
|
|
|
options.addStringOption('Xwerror', '-quiet')
|
|
|
|
}
|
|
|
|
}
|