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'))
|
|
|
|
}
|
2021-12-28 01:38:08 +05:30
|
|
|
useJUnitPlatform()
|
2021-01-15 22:38:20 +05:30
|
|
|
}
|
|
|
|
|
2018-03-14 09:14:02 +05:30
|
|
|
dependencies {
|
|
|
|
implementation project(':timeago-parser')
|
|
|
|
|
2021-08-08 03:21:09 +05:30
|
|
|
implementation "com.github.TeamNewPipe:nanojson:$nanojsonVersion"
|
2021-10-02 13:50:38 +05:30
|
|
|
implementation 'org.jsoup:jsoup:1.14.3'
|
2021-06-18 03:19:07 +05:30
|
|
|
implementation 'org.mozilla:rhino:1.7.13'
|
2021-08-08 03:21:09 +05:30
|
|
|
implementation "com.github.spotbugs:spotbugs-annotations:$spotbugsVersion"
|
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-12-28 01:38:08 +05:30
|
|
|
testImplementation platform("org.junit:junit-bom:$junitVersion")
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api'
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-params'
|
|
|
|
|
2021-02-15 04:14:19 +05:30
|
|
|
testImplementation "com.squareup.okhttp3:okhttp:3.12.13"
|
2021-11-01 14:42:53 +05:30
|
|
|
testImplementation 'com.google.code.gson:gson:2.8.9'
|
2020-04-16 19:38:14 +05:30
|
|
|
}
|