build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'java-library'
  2. sourceCompatibility = 1.8
  3. targetCompatibility = 1.8
  4. apply plugin: 'ru.vyarus.animalsniffer'
  5. apply plugin: 'idea'
  6. apply plugin: 'witness'
  7. apply from: 'witness.gradle'
  8. apply from: '../dagger.gradle'
  9. dependencies {
  10. implementation project(path: ':briar-api', configuration: 'default')
  11. implementation 'com.rometools:rome:1.10.0'
  12. implementation 'org.jdom:jdom2:2.0.6'
  13. implementation 'com.squareup.okhttp3:okhttp:3.10.0'
  14. implementation 'org.jsoup:jsoup:1.11.3'
  15. annotationProcessor 'com.google.dagger:dagger-compiler:2.19'
  16. testImplementation project(path: ':bramble-core', configuration: 'default')
  17. testImplementation project(path: ':bramble-core', configuration: 'testOutput')
  18. testImplementation project(path: ':bramble-api', configuration: 'testOutput')
  19. testImplementation 'net.jodah:concurrentunit:0.4.2'
  20. testImplementation 'junit:junit:4.12'
  21. testImplementation "org.jmock:jmock:2.8.2"
  22. testImplementation "org.jmock:jmock-junit4:2.8.2"
  23. testImplementation "org.jmock:jmock-legacy:2.8.2"
  24. testAnnotationProcessor 'com.google.dagger:dagger-compiler:2.19'
  25. signature 'org.codehaus.mojo.signature:java16:1.1@signature'
  26. }