mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
33 lines
1.1 KiB
Groovy
33 lines
1.1 KiB
Groovy
apply plugin: 'java-library'
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
apply plugin: 'ru.vyarus.animalsniffer'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'witness'
|
|
apply from: 'witness.gradle'
|
|
apply from: '../dagger.gradle'
|
|
|
|
dependencies {
|
|
implementation project(path: ':briar-api', configuration: 'default')
|
|
implementation 'com.rometools:rome:1.10.0'
|
|
implementation 'org.jdom:jdom2:2.0.6'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
|
|
implementation 'org.jsoup:jsoup:1.11.3'
|
|
|
|
annotationProcessor 'com.google.dagger:dagger-compiler:2.19'
|
|
|
|
testImplementation project(path: ':bramble-core', configuration: 'default')
|
|
testImplementation project(path: ':bramble-core', configuration: 'testOutput')
|
|
testImplementation project(path: ':bramble-api', configuration: 'testOutput')
|
|
testImplementation 'net.jodah:concurrentunit:0.4.2'
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation "org.jmock:jmock:2.8.2"
|
|
testImplementation "org.jmock:jmock-junit4:2.8.2"
|
|
testImplementation "org.jmock:jmock-legacy:2.8.2"
|
|
|
|
testAnnotationProcessor 'com.google.dagger:dagger-compiler:2.19'
|
|
|
|
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
|
|
}
|