mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-03-19 04:43:12 +01:00
Prefix subprojects with 'smack-'
instead of using the old baseName=smack appendix=project.name approach, we are now going convention over configuration and renaming the subprojects directories to the proper name. Having a prefix is actually very helpful, because the resulting libraries will be named like the subproject. And a core-4.0.0-rc1.jar is not as explicit about what it actually *is* as a smack-core-4.0.0-rc1.jar. SMACK-265
This commit is contained in:
parent
b6fb1f3743
commit
91fd15ad86
758 changed files with 42 additions and 42 deletions
build.gradle
debug
settings.gradlesmack-bosh
build.gradle
src/main/java/org/jivesoftware/smack
smack-compression-jzlib
smack-core
.gitignorebuild.gradle
src
integration-test
java/org/jivesoftware/smack
ChatTest.javaFloodTest.javaIQTest.javaLoginTest.javaMessageTest.javaPacketReaderTest.javaPresenceTest.javaPrivacyClient.javaReconnectionTest.javaRosterInitializedBeforeConnectTest.javaRosterListenerTest.javaRosterSmackTest.java
filter
AndFilterTest.javaFromContainsFilterTest.javaNotFilterTest.javaOrFilterTest.javaPacketIDFilterTest.javaPacketTypeFilterTest.javaToContainsFilterTest.java
packet
test
util
resources
main/java/org/jivesoftware/smack
AbstractConnectionListener.javaAccountManager.javaChat.javaChatManager.javaChatManagerListener.javaConnectionConfiguration.javaConnectionCreationListener.javaConnectionListener.javaDirectoryRosterStore.javaManager.javaMessageListener.javaPacketCollector.javaPacketInterceptor.javaPacketListener.javaReconnectionManager.javaRoster.javaRosterEntry.javaRosterGroup.javaRosterListener.javaRosterStore.javaSASLAuthentication.javaSmackConfiguration.javaSmackException.javaXMPPConnection.javaXMPPException.java
compression
debugger
filter
AndFilter.javaFromMatchesFilter.javaIQReplyFilter.javaIQTypeFilter.javaMessageTypeFilter.javaNotFilter.javaOrFilter.javaPacketExtensionFilter.javaPacketFilter.javaPacketIDFilter.javaPacketTypeFilter.javaThreadFilter.javapackage.html
initializer
package.htmlpacket
|
@ -187,7 +187,7 @@ subprojects {
|
|||
}
|
||||
}
|
||||
|
||||
(subprojects - project(':core'))*.jar {
|
||||
(subprojects - project(':smack-core'))*.jar {
|
||||
manifest {
|
||||
attributes('Bundle-SymbolicName': project.group + '-' + project.name,
|
||||
'Fragment-Host': project.group,
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
description = """\
|
||||
Smack GUI debugger.
|
||||
Inspect the exchanged XMPP stanzas."""
|
||||
|
||||
dependencies {
|
||||
compile project(':core')
|
||||
testCompile project(':core').sourceSets.test.runtimeClasspath
|
||||
}
|
|
@ -1,11 +1,11 @@
|
|||
include 'core',
|
||||
'tcp',
|
||||
'extensions',
|
||||
'experimental',
|
||||
'debug',
|
||||
'resolver-dnsjava',
|
||||
'resolver-javax',
|
||||
'compression-jzlib',
|
||||
'legacy',
|
||||
'jingle',
|
||||
'bosh'
|
||||
include 'smack-core',
|
||||
'smack-tcp',
|
||||
'smack-extensions',
|
||||
'smack-experimental',
|
||||
'smack-debug',
|
||||
'smack-resolver-dnsjava',
|
||||
'smack-resolver-javax',
|
||||
'smack-compression-jzlib',
|
||||
'smack-legacy',
|
||||
'smack-jingle',
|
||||
'smack-bosh'
|
|
@ -9,6 +9,6 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile project(':core')
|
||||
compile project(':smack-core')
|
||||
compile 'org.igniterealtime.jbosh:jbosh:0.8.0'
|
||||
}
|
|
@ -3,6 +3,6 @@ Compression with jzlib
|
|||
Allow to compress the XMPP stream with help of jzlib."""
|
||||
|
||||
dependencies {
|
||||
compile project(path: ':core', configuration: 'compression')
|
||||
compile project(path: ':smack-core', configuration: 'compression')
|
||||
compile 'com.jcraft:jzlib:1.1.3'
|
||||
}
|
0
core/.gitignore → smack-core/.gitignore
vendored
0
core/.gitignore → smack-core/.gitignore
vendored
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue