2021-01-15 18:08:20 +01: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 04:44:02 +01:00
|
|
|
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'
|
2021-06-17 23:49:07 +02:00
|
|
|
implementation 'org.mozilla:rhino:1.7.13'
|
2021-06-23 11:57:42 +02:00
|
|
|
implementation 'com.github.spotbugs:spotbugs-annotations:4.2.3'
|
2020-05-02 08:26:48 +02:00
|
|
|
implementation 'org.nibor.autolink:autolink:0.10.0'
|
2018-03-14 04:44:02 +01:00
|
|
|
|
2021-05-28 15:09:26 +02:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2021-02-14 23:44:19 +01:00
|
|
|
testImplementation "com.squareup.okhttp3:okhttp:3.12.13"
|
2021-06-17 23:49:01 +02:00
|
|
|
testImplementation 'com.google.code.gson:gson:2.8.7'
|
2020-04-16 16:08:14 +02:00
|
|
|
}
|