Mercury-IM/transport_xmpp/build.gradle

19 lines
685 B
Groovy
Raw Normal View History

2019-11-03 20:33:36 +01:00
apply plugin: 'java-library'
dependencies {
implementation project(":repository_xmpp")
implementation project(":entity_xmpp")
2019-11-12 00:07:57 +01:00
implementation project(":transport")
2019-11-16 09:58:00 +01:00
// Smack
// Not all of those are needed, but it may be a good idea to define those versions explicitly
api "org.igniterealtime.smack:smack-core:$smackCoreVersion"
api "org.igniterealtime.smack:smack-experimental:$smackExperimentalVersion"
api "org.igniterealtime.smack:smack-extensions:$smackExtensionsVersion"
api "org.igniterealtime.smack:smack-im:$smackImVersion"
api "org.igniterealtime.smack:smack-tcp:$smackTcpVersion"
2019-11-03 20:33:36 +01:00
}
sourceCompatibility = "8"
targetCompatibility = "8"