26 lines
758 B
Groovy
26 lines
758 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
apply plugin: 'application'
|
|
|
|
application {
|
|
mainClass = 'de.thedevstack.xmpp.mamloader.MamLoader'
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jxmpp:jxmpp-core:1.1.0"
|
|
implementation "org.igniterealtime.smack:smack-java8:4.4.8"
|
|
// Optional for XMPPTCPConnection
|
|
implementation "org.igniterealtime.smack:smack-tcp:4.4.8"
|
|
// Optional for XMPP-IM (RFC 6121) support (Roster, Threaded Chats, …)
|
|
implementation "org.igniterealtime.smack:smack-im:4.4.8"
|
|
// Optional for XMPP extensions support
|
|
implementation "org.igniterealtime.smack:smack-extensions:4.4.8"
|
|
// Optional for XMPP extensions support
|
|
implementation "org.igniterealtime.smack:smack-experimental:4.4.8"
|
|
}
|