mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Create new subproject 'legacy', move workgroup API into it
This commit is contained in:
parent
202be35978
commit
6dd64da930
69 changed files with 20 additions and 1 deletions
17
build.gradle
17
build.gradle
|
@ -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.
|
||||
|
|
|
@ -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'
|
Loading…
Reference in a new issue