2021-01-15 17:08:20 +00:00
|
|
|
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'))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-14 03:44:02 +00:00
|
|
|
dependencies {
|
|
|
|
implementation project(':timeago-parser')
|
|
|
|
|
2020-04-16 14:08:14 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
2020-05-02 06:21:47 +00:00
|
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
2020-05-02 06:26:48 +00: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'
|
2018-03-14 03:44:02 +00:00
|
|
|
|
2020-12-21 22:22:16 +00:00
|
|
|
testImplementation 'junit:junit:4.13.1'
|
2021-02-14 22:44:19 +00:00
|
|
|
testImplementation "com.squareup.okhttp3:okhttp:3.12.13"
|
2020-12-15 14:14:07 +00:00
|
|
|
testImplementation 'com.google.code.gson:gson:2.8.6'
|
2020-04-16 14:08:14 +00:00
|
|
|
}
|