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

Merge branch '4.0'

Conflicts:
	build.gradle
	smack-core/src/main/java/org/jivesoftware/smack/ConnectionConfiguration.java
	smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java
This commit is contained in:
Florian Schmaus 2014-07-28 00:05:02 +02:00
commit 6bf0678db6
2 changed files with 23 additions and 2 deletions

View file

@ -227,7 +227,7 @@ subprojects {
}
}
['smack-resolver-javax', 'smack-extensions', 'smack-experimental', 'smack-legacy'].each { name ->
['smack-extensions', 'smack-experimental', 'smack-legacy'].each { name ->
project(":$name") {
jar {
manifest {
@ -237,6 +237,16 @@ subprojects {
}
}
['smack-resolver-javax'].each { name ->
project(":$name") {
jar {
manifest {
instruction 'Service-Component', "org.jivesoftware.smack/$name-components.xml"
}
}
}
}
subprojects*.jar {
manifest {
from sharedManifest
@ -252,4 +262,4 @@ def getGitCommit() {
def gitCommit = proc.text.trim()
assert !gitCommit.isEmpty()
gitCommit
}
}