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

View File

@ -9,4 +9,5 @@ include 'smack-core',
'smack-compression-jzlib',
'smack-legacy',
'smack-jingle',
'smack-bosh'
'smack-bosh',
'smack-java7'

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
}

View File

@ -0,0 +1,16 @@
/**
*
* Copyright 2014 the original author or authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/