mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Fix appendix in smack-core
Now that we do not longer use the appendix for the subproject name (91fd15) we need to set instead of appending the appendix in smack-core.
This commit is contained in:
parent
39c837190d
commit
74d188aabb
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
task compressionJar(type: Jar) {
|
task compressionJar(type: Jar) {
|
||||||
appendix += '-compression'
|
appendix = 'compression'
|
||||||
dependsOn classes
|
dependsOn classes
|
||||||
from sourceSets.main.output
|
from sourceSets.main.output
|
||||||
include('org/jivesoftware/smack/compression/**')
|
include('org/jivesoftware/smack/compression/**')
|
||||||
|
@ -24,7 +24,7 @@ task compressionJar(type: Jar) {
|
||||||
}
|
}
|
||||||
|
|
||||||
task dnsJar(type: Jar) {
|
task dnsJar(type: Jar) {
|
||||||
appendix += '-dns'
|
appendix = 'dns'
|
||||||
dependsOn classes
|
dependsOn classes
|
||||||
from sourceSets.main.output
|
from sourceSets.main.output
|
||||||
include('org/jivesoftware/smack/util/dns/**')
|
include('org/jivesoftware/smack/util/dns/**')
|
||||||
|
|
Loading…
Reference in a new issue