NewPipeExtractor/build.gradle

18 lines
318 B
Groovy
Raw Normal View History

2017-08-05 10:03:56 +02:00
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'
2017-08-06 22:20:15 +02:00
sourceCompatibility = 1.7
targetCompatibility = 1.7
2017-08-05 10:03:56 +02:00
}