mirror of
https://github.com/TeamNewPipe/NewPipeExtractor
synced 2024-12-12 11:59:45 +01:00
15 lines
257 B
Groovy
15 lines
257 B
Groovy
apply plugin: 'java-library'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.json:json:20160807'
|
|
implementation 'org.jsoup:jsoup:1.9.2'
|
|
implementation 'org.mozilla:rhino:1.7.7.1'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
}
|
|
|