Mercury-IM/persistence/build.gradle

16 lines
284 B
Groovy
Raw Normal View History

2019-08-03 19:05:50 +02:00
apply plugin: 'java-library'
2019-05-19 02:00:33 +02:00
dependencies {
api('org.jxmpp:jxmpp-jid') {
version {
prefer 'latest.release'
}
}
2019-08-03 19:05:50 +02:00
// RxJava2
implementation "io.reactivex.rxjava2:rxjava:$rxJava2Version"
2019-05-19 02:00:33 +02:00
2019-08-03 19:05:50 +02:00
testImplementation "junit:junit:$junitVersion"
2019-05-19 02:00:33 +02:00
}