build.gradle 796 B

1234567891011121314151617181920212223
  1. apply plugin: 'java-library'
  2. sourceCompatibility = 1.8
  3. targetCompatibility = 1.8
  4. apply plugin: 'idea'
  5. apply from: '../dagger.gradle'
  6. dependencies {
  7. testImplementation project(':bramble-api')
  8. testImplementation project(path: ':bramble-api', configuration: 'testOutput')
  9. testImplementation project(':bramble-core')
  10. testImplementation project(path: ':bramble-core', configuration: 'testOutput')
  11. testImplementation project(':mailbox-core')
  12. testImplementation project(':mailbox-lib')
  13. testImplementation "junit:junit:$junit_version"
  14. testImplementation "ch.qos.logback:logback-classic:1.2.11"
  15. testImplementation 'net.jodah:concurrentunit:0.4.6'
  16. testImplementation "com.squareup.okhttp3:okhttp:$okhttp_version"
  17. testAnnotationProcessor "com.google.dagger:dagger-compiler:$dagger_version"
  18. }