NewPipeExtractor/build.gradle

58 lines
1.4 KiB
Groovy
Raw Normal View History

allprojects {
apply plugin: 'java-library'
apply plugin: 'maven'
sourceCompatibility = 1.8
targetCompatibility = 1.8
2021-02-14 22:09:17 +01:00
version 'v0.20.10'
group 'com.github.TeamNewPipe'
2017-08-05 10:03:56 +02:00
repositories {
jcenter()
2020-04-16 16:08:14 +02:00
maven { url "https://jitpack.io" }
}
2017-08-05 10:03:56 +02:00
}
dependencies {
2020-06-26 23:32:43 +02:00
api project(':extractor')
implementation project(':timeago-parser')
}
subprojects {
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
2017-08-09 15:25:02 +02:00
tasks.withType(Test) {
testLogging {
events "skipped", "failed"
showStandardStreams = true
exceptionFormat = 'full'
}
}
2017-11-30 10:36:49 +01:00
artifacts {
archives sourcesJar
2017-11-30 10:36:49 +01:00
}
}
// https://discuss.gradle.org/t/best-approach-gradle-multi-module-project-generate-just-one-global-javadoc/18657/21
task aggregatedJavadocs(type: Javadoc, group: 'Documentation') {
destinationDir = file("$buildDir/docs/javadoc")
title = "$project.name $version"
// options.memberLevel = JavadocMemberLevel.PRIVATE
options.links 'https://docs.oracle.com/javase/8/docs/api/'
options.encoding 'UTF-8'
subprojects.each { project ->
project.tasks.withType(Javadoc).each { javadocTask ->
source += javadocTask.source
classpath += javadocTask.classpath
excludes += javadocTask.excludes
includes += javadocTask.includes
}
}
}