NewPipeExtractor/build.gradle

25 lines
481 B
Groovy
Raw Normal View History

2017-08-05 13:33:56 +05:30
apply plugin: 'java-library'
repositories {
jcenter()
}
dependencies {
implementation 'com.github.openjson:openjson:1.0.8'
2017-08-05 13:33:56 +05:30
implementation 'org.jsoup:jsoup:1.9.2'
implementation 'org.mozilla:rhino:1.7.7.1'
testImplementation 'junit:junit:4.12'
2017-08-07 01:50:15 +05:30
sourceCompatibility = 1.7
targetCompatibility = 1.7
2017-08-05 13:33:56 +05:30
}
2017-08-09 18:55:02 +05:30
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
}