NewPipeExtractor/extractor/build.gradle

21 lines
775 B
Groovy
Raw Normal View History

test {
// Pass on downloader type to tests for different CI jobs. See DownloaderFactory.java and ci.yml
if (System.properties.containsKey('downloader')) {
systemProperty('downloader', System.getProperty('downloader'))
}
}
dependencies {
implementation project(':timeago-parser')
2020-04-16 16:08:14 +02:00
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
2020-05-02 08:21:47 +02:00
implementation 'org.jsoup:jsoup:1.13.1'
2020-05-02 08:26:48 +02:00
implementation 'org.mozilla:rhino:1.7.12'
implementation 'com.github.spotbugs:spotbugs-annotations:4.0.2'
implementation 'org.nibor.autolink:autolink:0.10.0'
2020-12-21 23:22:16 +01:00
testImplementation 'junit:junit:4.13.1'
2020-06-11 15:06:08 +02:00
testImplementation "com.squareup.okhttp3:okhttp:3.12.11"
testImplementation 'com.google.code.gson:gson:2.8.6'
2020-04-16 16:08:14 +02:00
}