NewPipeExtractor/build.gradle

35 lines
705 B
Groovy
Raw Normal View History

2017-08-05 10:03:56 +02:00
apply plugin: 'java-library'
allprojects {
sourceCompatibility = 1.7
targetCompatibility = 1.7
}
2017-08-05 10:03:56 +02:00
repositories {
jcenter()
}
dependencies {
implementation 'com.grack:nanojson:1.1'
2017-08-05 10:03:56 +02:00
implementation 'org.jsoup:jsoup:1.9.2'
implementation 'org.mozilla:rhino:1.7.7.1'
2017-11-28 12:22:35 +01:00
implementation 'com.github.spotbugs:spotbugs-annotations:3.1.0'
2017-08-05 10:03:56 +02:00
testImplementation 'junit:junit:4.12'
}
2017-08-09 15:25:02 +02:00
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
2017-11-30 10:36:49 +01:00
}
tasks.withType(Test) {
testLogging {
events "skipped", "failed"
showStandardStreams = true
exceptionFormat = 'full'
}
2017-08-09 15:25:02 +02:00
}