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')
|
|
|
|
}
|
|
|
|
|
|
|
|
compileJava {
|
|
|
|
options.bootClasspath = androidBootClasspath
|
|
|
|
}
|
|
|
|
|
|
|
|
// See http://stackoverflow.com/a/2823592/194894
|
|
|
|
// TODO this doesn't seem to work right now. But on the other hand it
|
|
|
|
// is not really required, just to avoid a javadoc compiler warning
|
|
|
|
javadoc {
|
|
|
|
options.linksOffline "http://developer.android.com/reference", androidJavadocOffline
|
|
|
|
}
|