Mercury-IM/transport_xmpp/build.gradle

19 lines
677 B
Groovy
Raw Normal View History

2019-11-03 20:33:36 +01:00
apply plugin: 'java-library'
dependencies {
implementation project(":entity")
implementation project(':domain')
2019-11-03 20:33:36 +01:00
implementation project(":repository_xmpp")
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"