This repository has been archived by the owner on Jun 1, 2022. It is now read-only.
forked from eneim/kohii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
177 lines (153 loc) · 5.03 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
* Copyright (c) 2018 Nam Nguyen, nam@ene.im
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
import kohii.Libs
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
maven { url 'https://maven.fabric.io/public' }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
//noinspection GradleDependency
classpath Libs.Common.androidGradlePlugin
classpath Libs.Kotlin.gradlePlugin
// classpath Libs.Common.dexcountGradlePlugin
classpath Libs.Google.gmsGoogleServices
classpath Libs.Google.firebaseCrashlyticsPlugin
classpath Libs.Common.ktLintPlugin
// classpath Libs.Common.bintrayPlugin
classpath Libs.Common.dokkaPlugin
classpath Libs.Common.binaryValidator
// classpath Libs.Common.mavenPublish
classpath Libs.Common.nexusPublish
}
}
apply plugin: 'io.github.gradle-nexus.publish-plugin'
// Setup for the Nexus Publish Plugin.
group = GROUP
version = VERSION_NAME
def sampleProjects = [project("kohii-sample"), project("kohii-sample-tiktok")]
file("$rootDir/kohii-samples").eachDir { dir ->
if (file("$dir/build.gradle").exists() || file("$dir/build.gradle.kts").exists()) {
sampleProjects += project(":kohii-samples:" + dir.name)
}
}
apply plugin: 'binary-compatibility-validator'
apiValidation {
sampleProjects.forEach {
ignoredProjects += it.name
}
}
apply plugin: "org.jetbrains.dokka"
tasks.withType(org.jetbrains.dokka.gradle.DokkaMultiModuleTask).configureEach {
outputDirectory.set(file("$rootDir/docs/api"))
removeChildTasks(sampleProjects)
}
def getRepositoryUsername() {
return hasProperty('mavenCentralRepositoryUsername') ? mavenCentralRepositoryUsername : ""
}
def getRepositoryPassword() {
return hasProperty('mavenCentralRepositoryPassword') ? mavenCentralRepositoryPassword : ""
}
nexusPublishing {
repositories {
sonatype {
username = getRepositoryUsername()
password = getRepositoryPassword()
}
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
//noinspection JcenterRepositoryObsolete,GrDeprecatedAPIUsage
jcenter() // For ExoPlayer 2.11.x
maven { url "https://jitpack.io" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
/* flatDir {
dirs 'libs'
} */
}
apply plugin: "org.jlleitschuh.gradle.ktlint" // Version should be inherited from parent
apply plugin: "org.jetbrains.dokka"
tasks.withType(JavaCompile).configureEach { task ->
task.sourceCompatibility = JavaVersion.VERSION_1_8
task.targetCompatibility = JavaVersion.VERSION_1_8
}
//noinspection UnnecessaryQualifiedReference
tasks.withType(org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile).configureEach { task ->
task.kotlinOptions {
jvmTarget = "1.8"
}
}
//noinspection UnnecessaryQualifiedReference
tasks.withType(org.jetbrains.kotlin.gradle.dsl.KotlinCompile).configureEach { task ->
task.kotlinOptions {
freeCompilerArgs += [
'-XXLanguage:+InlineClasses',
'-Xjvm-default=enable'
]
}
}
tasks.withType(Test) {
testLogging {
events "skipped", "failed", "passed"
}
}
tasks.withType(org.jetbrains.dokka.gradle.DokkaTaskPartial).configureEach {
dokkaSourceSets.configureEach {
jdkVersion.set(8)
skipDeprecated.set(true)
externalDocumentationLink {
url.set(URL("https://developer.android.com/reference/"))
}
externalDocumentationLink {
url.set(URL("https://exoplayer.dev/doc/reference/"))
}
}
}
afterEvaluate { p ->
if (p.hasProperty("android")) {
p.android.lintOptions {
// FIXME(eneim): temporarily disable.
disable "RestrictedApi", "VisibleForTests", "UnusedResources", "UnusedIds"
}
}
if (p.hasProperty("android") && p.hasProperty("dependencies")) {
p.dependencies {
dokkaHtmlPartialPlugin(Libs.Common.dokkaAndroidPlugin)
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
tasks.wrapper {
distributionType = Wrapper.DistributionType.ALL
}
// copy from https://github.com/chrisbanes/tivi
// read from gradle.properties for a value, or use default instead.
String lookUpProf(String propertyName, String defaultValue) {
def propertyValue = project.properties[propertyName]
return propertyValue != null ? propertyValue : defaultValue
}