2021-01-15 22:38:20 +05:30
|
|
|
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 09:14:02 +05:30
|
|
|
dependencies {
|
|
|
|
implementation project(':timeago-parser')
|
|
|
|
|
2020-04-16 19:38:14 +05:30
|
|
|
implementation 'com.github.TeamNewPipe:nanojson:1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751'
|
2020-05-02 11:51:47 +05:30
|
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
2021-06-18 03:19:07 +05:30
|
|
|
implementation 'org.mozilla:rhino:1.7.13'
|
2021-06-23 15:27:42 +05:30
|
|
|
implementation 'com.github.spotbugs:spotbugs-annotations:4.2.3'
|
2020-05-02 11:56:48 +05:30
|
|
|
implementation 'org.nibor.autolink:autolink:0.10.0'
|
2018-03-14 09:14:02 +05:30
|
|
|
|
2021-05-28 18:39:26 +05:30
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2021-02-15 04:14:19 +05:30
|
|
|
testImplementation "com.squareup.okhttp3:okhttp:3.12.13"
|
2021-06-18 03:19:01 +05:30
|
|
|
testImplementation 'com.google.code.gson:gson:2.8.7'
|
2020-04-16 19:38:14 +05:30
|
|
|
}
|