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 08:03:56 +00:00
repositories {
jcenter()
}
2017-08-05 08:03:56 +00:00
}
subprojects {
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
2017-08-09 13:25:02 +00:00
tasks.withType(Test) {
testLogging {
events "skipped", "failed"
showStandardStreams = true
exceptionFormat = 'full'
}
}
2017-11-30 09:36:49 +00:00
artifacts {
archives sourcesJar
2017-11-30 09:36:49 +00:00
}
}