Create new subproject 'legacy', move workgroup API into it

This commit is contained in:
Florian Schmaus 2014-02-16 09:53:39 +01:00
parent 202be35978
commit 6dd64da930
69 changed files with 20 additions and 1 deletions

View File

@ -304,6 +304,23 @@ between patch versions.
}
}
project(':legacy') {
description = """\
Smack legacy extensions.
Usually XEPs in the state 'retracted', 'rejected', 'deprecated',
'obsolete' or in a long standing 'deferred' state.
"""
dependencies {
compile project(':core')
compile project(':extensions')
testCompile project(':core').sourceSets.test.runtimeClasspath
// Test dependencies (junit, ) are interfered from the sourceSet.test of the core project
// So there is no need to add them explicitly here again
}
}
project(':debug') {
description = """\
Smack GUI debugger.

View File

@ -1 +1,3 @@
include 'core', 'extensions', 'experimental', 'debug', 'resolver-dnsjava', 'resolver-javax', 'compression-jzlib'
include 'core', 'extensions', 'experimental',
'debug', 'resolver-dnsjava', 'resolver-javax',
'compression-jzlib', 'legacy'