mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-10-31 22:15:59 +01:00
89dc3a0e85
This commit marks an important milestone with the addition of the smack-android subproject. Smack is now able to run native on Android without requiring any modifications, which makes the aSmack build environment obsolete. It was necessary to redesign the code for SASL authentication to achieve this. Smack now comes with smack-sasl-provided for SASL implementations that do not rely on additional APIs like javax for platforms where those APIs are not available like Android.
19 lines
566 B
Groovy
19 lines
566 B
Groovy
description = """\
|
|
Smack for Java7 (or higher).
|
|
This is a pseudo-artifact that pulls all the required dependencies to
|
|
run Smack on Java 7 (or higher) JVMs. You can add further dependencies
|
|
like smack-bosh, run with a minimal subset by don't depending on
|
|
smack-java7, but using e.g. just smack-core, smack-tcp and
|
|
smack-resolver-javax"""
|
|
|
|
dependencies {
|
|
compile project(":smack-core")
|
|
compile project(":smack-extensions")
|
|
compile project(":smack-tcp")
|
|
compile project(":smack-resolver-javax")
|
|
compile project(":smack-sasl-javax")
|
|
}
|
|
|
|
javadoc {
|
|
enabled = false
|
|
}
|