2019-05-19 02:00:33 +02:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
|
|
|
|
dependencies {
|
2019-05-27 21:34:11 +02:00
|
|
|
|
2019-11-08 00:47:17 +01:00
|
|
|
implementation project(':entity')
|
2019-10-28 14:56:56 +01:00
|
|
|
|
2019-12-21 00:27:48 +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"
|
|
|
|
|
|
|
|
testImplementation "org.igniterealtime.smack:smack-java7:$smackJava7Version"
|
|
|
|
|
2019-10-28 14:56:56 +01:00
|
|
|
// RxJava2
|
2019-11-08 00:47:17 +01:00
|
|
|
implementation "io.reactivex.rxjava2:rxjava:$rxJava2Version"
|
2019-10-28 14:56:56 +01:00
|
|
|
|
2019-07-31 22:59:46 +02:00
|
|
|
// Dagger 2 for dependency injection
|
2019-08-01 00:17:27 +02:00
|
|
|
implementation "com.google.dagger:dagger:$daggerVersion"
|
2019-07-31 22:59:46 +02:00
|
|
|
annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion"
|
2019-08-03 19:05:50 +02:00
|
|
|
|
2020-05-16 15:53:54 +02:00
|
|
|
compileOnly "org.projectlombok:lombok:$lombokVersion"
|
|
|
|
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
|
2020-01-06 01:27:11 +01:00
|
|
|
|
2019-10-28 14:56:56 +01:00
|
|
|
// JUnit for testing
|
2019-08-03 19:05:50 +02:00
|
|
|
testImplementation "junit:junit:$junitVersion"
|
2019-05-19 02:00:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = "8"
|
|
|
|
targetCompatibility = "8"
|