mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2024-12-12 21:30:33 +05:30
32 lines
555 B
Groovy
32 lines
555 B
Groovy
allprojects {
|
|
apply plugin: 'java-library'
|
|
sourceCompatibility = 1.7
|
|
targetCompatibility = 1.7
|
|
|
|
version 'v0.12.0'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
classifier = 'sources'
|
|
from sourceSets.main.allSource
|
|
}
|
|
|
|
tasks.withType(Test) {
|
|
testLogging {
|
|
events "skipped", "failed"
|
|
showStandardStreams = true
|
|
exceptionFormat = 'full'
|
|
}
|
|
}
|
|
|
|
artifacts {
|
|
archives sourcesJar
|
|
}
|
|
}
|
|
|