1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 17:19:39 +02:00

Add smack-java7

This commit is contained in:
Florian Schmaus 2014-07-20 12:58:36 +02:00
parent d06d5b7c69
commit b117d3a918
3 changed files with 36 additions and 1 deletions

18
smack-java7/build.gradle Normal file
View file

@ -0,0 +1,18 @@
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")
}
javadoc {
enabled = false
}