mirror of
https://codeberg.org/Mercury-IM/Mercury-IM
synced 2024-11-15 12:12:05 +01:00
19 lines
475 B
Groovy
19 lines
475 B
Groovy
apply plugin: 'java-library'
|
|
|
|
dependencies {
|
|
|
|
implementation project(':entity')
|
|
|
|
// RxJava2
|
|
implementation "io.reactivex.rxjava2:rxjava:$rxJava2Version"
|
|
|
|
// Dagger 2 for dependency injection
|
|
implementation "com.google.dagger:dagger:$daggerVersion"
|
|
annotationProcessor "com.google.dagger:dagger-compiler:$daggerVersion"
|
|
|
|
// JUnit for testing
|
|
testImplementation "junit:junit:$junitVersion"
|
|
}
|
|
|
|
sourceCompatibility = "8"
|
|
targetCompatibility = "8"
|