NewPipeExtractor/build.gradle

32 lines
555 B
Groovy
Raw Normal View History

allprojects {
apply plugin: 'java-library'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version 'v0.12.0'
2017-08-05 13:33:56 +05:30
repositories {
jcenter()
}
2017-08-05 13:33:56 +05:30
}
subprojects {
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
2017-08-09 18:55:02 +05:30
tasks.withType(Test) {
testLogging {
events "skipped", "failed"
showStandardStreams = true
exceptionFormat = 'full'
}
}
2017-11-30 15:06:49 +05:30
artifacts {
archives sourcesJar
2017-11-30 15:06:49 +05:30
}
}