blob: bc4dd36afc57b670b7ac79629d48f7531dc9cd52 [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
Roman Elizarov660c2d72020-02-14 13:18:37 +03002 * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03003 */
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +03004import org.jetbrains.kotlin.konan.target.HostManager
5
Victor Turanskye47cb352020-05-12 18:33:04 +03006apply plugin: 'jdk-convention'
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +03007apply from: rootProject.file("gradle/experimental.gradle")
8
9def rootModule = "kotlinx.coroutines"
10def coreModule = "kotlinx-coroutines-core"
11// Not applicable for Kotlin plugin
dkhalanskyjb02b403d2020-04-06 16:33:22 +030012def sourceless = ['kotlinx.coroutines', 'site', 'kotlinx-coroutines-bom', 'integration-testing']
13def internal = ['kotlinx.coroutines', 'site', 'benchmarks', 'js-stub', 'stdlib-stubs', 'integration-testing']
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +030014// Not published
Vsevolod Tolstopyatov5378b802019-09-19 17:39:08 +030015def unpublished = internal + ['example-frontend-js', 'android-unit-tests']
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +030016
Kirill Timofeeva5186962017-10-25 14:25:47 +030017buildscript {
Vsevolod Tolstopyatov585b7662019-04-16 12:10:57 +030018 /*
19 * These property group is used to build kotlinx.coroutines against Kotlin compiler snapshot.
20 * How does it work:
21 * When build_snapshot_train is set to true, kotlin_version property is overridden with kotlin_snapshot_version,
22 * atomicfu_version is overwritten by TeamCity environment (AFU is built with snapshot and published to mavenLocal
23 * as previous step or the snapshot build).
24 * Additionally, mavenLocal and Sonatype snapshots are added to repository list and stress tests are disabled.
25 * DO NOT change the name of these properties without adapting kotlinx.train build chain.
26 */
27 def prop = rootProject.properties['build_snapshot_train']
28 ext.build_snapshot_train = prop != null && prop != ""
29 if (build_snapshot_train) {
30 ext.kotlin_version = rootProject.properties['kotlin_snapshot_version']
31 if (kotlin_version == null) {
32 throw new IllegalArgumentException("'kotlin_snapshot_version' should be defined when building with snapshot compiler")
33 }
Roman Elizarove1ac2e52019-04-19 18:51:05 +030034 }
35
Roman Elizarov660c2d72020-02-14 13:18:37 +030036 // Determine if any project dependency is using a snapshot version
37 ext.using_snapshot_version = build_snapshot_train
38 rootProject.properties.each { key, value ->
39 if (key.endsWith("_version") && value instanceof String && value.endsWith("-SNAPSHOT")) {
40 println("NOTE: USING SNAPSHOT VERSION: $key=$value")
41 ext.using_snapshot_version=true
42 }
43 }
44
45 if (using_snapshot_version) {
Roman Elizarov1f6b44d2017-10-26 17:51:52 +030046 repositories {
Vsevolod Tolstopyatov585b7662019-04-16 12:10:57 +030047 mavenLocal()
Roman Elizarov1f6b44d2017-10-26 17:51:52 +030048 maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
49 }
50 }
Roman Elizarove1ac2e52019-04-19 18:51:05 +030051
Kirill Timofeeva5186962017-10-25 14:25:47 +030052 repositories {
53 jcenter()
Roman Elizarov31452902018-04-11 13:58:19 +030054 maven { url "https://kotlin.bintray.com/kotlinx" }
Michael Kuzmin476d6de2019-12-16 22:38:59 +030055 maven {
56 url "https://kotlin.bintray.com/kotlin-dev"
57 credentials {
58 username = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER') ?: ""
59 password = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY') ?: ""
60 }
61 }
Roman Elizarov0950dfa2018-07-13 10:33:25 +030062 maven { url "https://kotlin.bintray.com/kotlin-eap" }
Roman Elizarov31452902018-04-11 13:58:19 +030063 maven { url "https://jetbrains.bintray.com/kotlin-native-dependencies" }
Roman Elizarov65eff0b2017-12-20 15:51:31 +030064 maven { url "https://plugins.gradle.org/m2/" }
Kirill Timofeeva5186962017-10-25 14:25:47 +030065 }
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +030066
Kirill Timofeeva5186962017-10-25 14:25:47 +030067 dependencies {
68 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
69 classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
Vsevolod Tolstopyatov585b7662019-04-16 12:10:57 +030070 classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
Roman Elizarov660c2d72020-02-14 13:18:37 +030071 classpath "org.jetbrains.kotlinx:kotlinx-knit:$knit_version"
Roman Elizarov65eff0b2017-12-20 15:51:31 +030072 classpath "com.moowork.gradle:gradle-node-plugin:$gradle_node_version"
Vsevolod Tolstopyatove1538632020-02-10 21:12:58 +030073 classpath "org.jetbrains.kotlinx:binary-compatibility-validator:$binary_compatibility_validator_version"
Vsevolod Tolstopyatov305c66a2018-08-21 21:01:58 +030074
75 // JMH plugins
Vsevolod Tolstopyatovbda9c792019-09-12 16:50:33 +030076 classpath "com.github.jengelman.gradle.plugins:shadow:5.1.0"
Kirill Timofeeva5186962017-10-25 14:25:47 +030077 }
78}
79
Roman Elizarovd2f4b2b2019-09-02 17:22:39 +030080import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType
81
82// todo:KLUDGE: This is needed to workaround dependency resolution between Java and MPP modules
83def configureKotlinJvmPlatform(configuration) {
84 configuration.attributes.attribute(KotlinPlatformType.attribute, KotlinPlatformType.jvm)
85}
86
Ilya Gorbunovb1a07ee2018-04-16 21:51:55 +030087allprojects {
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +030088 // the only place where HostManager could be instantiated
89 project.ext.hostManager = new HostManager()
Vsevolod Tolstopyatov585b7662019-04-16 12:10:57 +030090 def deployVersion = properties['DeployVersion']
91 if (deployVersion != null) version = deployVersion
92
93 if (build_snapshot_train) {
94 ext.kotlin_version = rootProject.properties['kotlin_snapshot_version']
95 println "Using Kotlin $kotlin_version for project $it"
96
Vsevolod Tolstopyatov6ca6ed52019-08-21 17:08:34 +030097 def skipSnapshotChecks = rootProject.properties['skip_snapshot_checks'] != null
98 if (!skipSnapshotChecks && version != atomicfu_version) {
Vsevolod Tolstopyatov585b7662019-04-16 12:10:57 +030099 throw new IllegalStateException("Current deploy version is $version, but atomicfu version is not overridden ($atomicfu_version) for $it")
100 }
101
102 kotlin_version = rootProject.properties['kotlin_snapshot_version']
Roman Elizarove1ac2e52019-04-19 18:51:05 +0300103 }
104
Roman Elizarov660c2d72020-02-14 13:18:37 +0300105 if (using_snapshot_version) {
Vsevolod Tolstopyatov585b7662019-04-16 12:10:57 +0300106 repositories {
107 mavenLocal()
108 maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
109 }
110 }
Vsevolod Tolstopyatovfe4e05c2019-07-19 12:28:15 +0300111
112 ext.unpublished = unpublished
Roman Elizarov0b16abf2019-09-03 11:07:11 +0300113
114 // This project property is set during nightly stress test
115 def stressTest = project.properties['stressTest']
116
117 // Copy it to all test tasks
118 tasks.withType(Test) {
119 systemProperty 'stressTest', stressTest
120 }
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300121}
122
Vsevolod Tolstopyatove1538632020-02-10 21:12:58 +0300123apply plugin: "binary-compatibility-validator"
124apiValidation {
dkhalanskyjb36512762020-02-21 17:31:05 +0300125 ignoredProjects += unpublished + ["kotlinx-coroutines-bom"]
Vsevolod Tolstopyatovaff82022020-03-10 19:58:36 +0300126 if (build_snapshot_train) {
127 ignoredProjects.remove("site")
128 ignoredProjects.remove("example-frontend-js")
129 }
Vsevolod Tolstopyatove1538632020-02-10 21:12:58 +0300130 ignoredPackages += "kotlinx.coroutines.internal"
131}
132
Roman Elizarovbf9509d2020-02-14 15:52:10 +0300133// Configure repositories
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300134allprojects {
Roman Elizarovbf9509d2020-02-14 15:52:10 +0300135 String projectName = it.name
Roman Elizarov18fa1162018-06-27 15:13:01 +0300136 repositories {
Vsevolod Tolstopyatov6f01c932018-10-23 19:40:48 +0300137 /*
138 * google should be first in the repository list because some of the play services
139 * transitive dependencies was removed from jcenter, thus breaking gradle dependency resolution
140 */
Roman Elizarov660c2d72020-02-14 13:18:37 +0300141 google()
Roman Elizarov18fa1162018-06-27 15:13:01 +0300142 jcenter()
Michael Kuzmin476d6de2019-12-16 22:38:59 +0300143 maven {
144 url "https://kotlin.bintray.com/kotlin-dev"
145 credentials {
146 username = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER') ?: ""
147 password = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY') ?: ""
148 }
149 }
Roman Elizarov0950dfa2018-07-13 10:33:25 +0300150 maven { url "https://kotlin.bintray.com/kotlin-eap" }
Roman Elizarov18fa1162018-06-27 15:13:01 +0300151 maven { url "https://kotlin.bintray.com/kotlinx" }
152 }
Roman Elizarovbf9509d2020-02-14 15:52:10 +0300153}
Ilya Gorbunovb1a07ee2018-04-16 21:51:55 +0300154
Roman Elizarovbf9509d2020-02-14 15:52:10 +0300155// Add dependency to core source sets. Core is configured in kx-core/build.gradle
156configure(subprojects.findAll { !sourceless.contains(it.name) && it.name != coreModule }) {
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300157 evaluationDependsOn(":$coreModule")
Victor Turanskyde388902020-05-02 14:22:30 +0300158 def platform = PlatformKt.platformOf(it)
Roman Elizarove1a56522018-04-04 10:31:08 +0300159 apply from: rootProject.file("gradle/compile-${platform}.gradle")
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300160 dependencies {
161 // See comment below for rationale, it will be replaced with "project" dependency
162 compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300163 // the only way IDEA can resolve test classes
164 testCompile project(":$coreModule").kotlin.targets.jvm.compilations.test.output.allOutputs
165 }
Roman Elizarovbf9509d2020-02-14 15:52:10 +0300166}
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300167
Roman Elizarovbf9509d2020-02-14 15:52:10 +0300168// Configure subprojects with Kotlin sources
169configure(subprojects.findAll { !sourceless.contains(it.name) }) {
170 // Use atomicfu plugin, it also adds all the necessary dependencies
171 apply plugin: 'kotlinx-atomicfu'
172
173 // Configure options for all Kotlin compilation tasks
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300174 tasks.withType(org.jetbrains.kotlin.gradle.tasks.AbstractKotlinCompile).all {
175 kotlinOptions.freeCompilerArgs += experimentalAnnotations.collect { "-Xuse-experimental=" + it }
176 kotlinOptions.freeCompilerArgs += "-progressive"
Vsevolod Tolstopyatova8904e22019-07-17 17:22:05 -0700177 kotlinOptions.freeCompilerArgs += "-XXLanguage:+InlineClasses"
Roman Elizarovbf9509d2020-02-14 15:52:10 +0300178 // Remove null assertions to get smaller bytecode on Android
179 kotlinOptions.freeCompilerArgs += ["-Xno-param-assertions", "-Xno-receiver-assertions", "-Xno-call-assertions"]
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300180 }
Kirill Timofeeva5186962017-10-25 14:25:47 +0300181}
182
Vsevolod Tolstopyatov585b7662019-04-16 12:10:57 +0300183if (build_snapshot_train) {
184 println "Hacking test tasks, removing stress and flaky tests"
185 allprojects {
186 tasks.withType(Test).all {
Vsevolod Tolstopyatovdbe3f482019-04-17 17:51:13 +0300187 exclude '**/*LinearizabilityTest*'
188 exclude '**/*LFTest*'
189 exclude '**/*StressTest*'
190 exclude '**/*scheduling*'
191 exclude '**/*Timeout*'
Vsevolod Tolstopyatov1748ce12019-04-18 14:49:35 +0300192 exclude '**/*definitely/not/kotlinx*'
Vsevolod Tolstopyatov642989e2020-01-24 20:00:46 +0300193 // Disable because of KT-11567 in 1.4
Vsevolod Tolstopyatovfb990b02020-02-04 17:11:47 +0300194 exclude '**/*CasesPublicAPITest*'
Vsevolod Tolstopyatov1748ce12019-04-18 14:49:35 +0300195 }
196 }
197
198 println "Manifest of kotlin-compiler-embeddable.jar for coroutines"
199 configure(subprojects.findAll { it.name == "kotlinx-coroutines-core" }) {
200 configurations.matching { it.name == "kotlinCompilerClasspath" }.all {
201 resolvedConfiguration.getFiles().findAll { it.name.contains("kotlin-compiler-embeddable") }.each {
202 def manifest = zipTree(it).matching {
203 include 'META-INF/MANIFEST.MF'
204 }.getFiles().first()
205
206 manifest.readLines().each {
207 println it
208 }
209 }
Vsevolod Tolstopyatov585b7662019-04-16 12:10:57 +0300210 }
211 }
212}
213
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300214/*
215 * Hack to trick nmpp plugin: we are renaming artifacts in order to provide backward compatibility for dependencies,
216 * but publishing plugin does not re-read artifact names for kotlin-jvm projects, so renaming is not applied in pom files
217 * for JVM-only projects.
218 *
Victor Turanskya8f4b642020-04-28 14:30:02 +0300219 * We artificially replace "project" dependency with "module" one to have proper names in pom files, but then substitute it
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300220 * to have out "project" dependency back.
221 */
222configure(subprojects.findAll { it.name != coreModule && it.name != rootModule }) {
223 configurations.all {
224 resolutionStrategy.dependencySubstitution {
225 substitute module("org.jetbrains.kotlinx:kotlinx-coroutines-core:$version") with project(':kotlinx-coroutines-core')
226 }
227 }
228}
Kirill Timofeeva5186962017-10-25 14:25:47 +0300229
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300230// Redefine source sets because we are not using 'kotlin/main/fqn' folder convention
231configure(subprojects.findAll { !sourceless.contains(it.name) && it.name != "benchmarks" && it.name != coreModule }) {
Vsevolod Tolstopyatove1fa1972018-06-19 15:54:58 +0300232 sourceSets {
Roman Elizarovf9408f62018-06-29 20:12:52 +0300233 main.kotlin.srcDirs = ['src']
234 test.kotlin.srcDirs = ['test']
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300235 main.resources.srcDirs = ['resources']
236 test.resources.srcDirs = ['test-resources']
Vsevolod Tolstopyatove1fa1972018-06-19 15:54:58 +0300237 }
238}
239
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300240def core_docs_url = "https://kotlin.github.io/kotlinx.coroutines/$coreModule/"
241def core_docs_file = "$projectDir/kotlinx-coroutines-core/build/dokka/kotlinx-coroutines-core/package-list"
Kirill Timofeeva5186962017-10-25 14:25:47 +0300242
243configure(subprojects.findAll { !unpublished.contains(it.name) }) {
Vsevolod Tolstopyatovfe4e05c2019-07-19 12:28:15 +0300244 if (it.name != 'kotlinx-coroutines-bom') {
245 apply from: rootProject.file('gradle/dokka.gradle')
246 }
Roman Elizarov65eff0b2017-12-20 15:51:31 +0300247 apply from: rootProject.file('gradle/publish-bintray.gradle')
Kirill Timofeeva5186962017-10-25 14:25:47 +0300248}
249
Roman Elizarov65eff0b2017-12-20 15:51:31 +0300250configure(subprojects.findAll { !unpublished.contains(it.name) }) {
Vsevolod Tolstopyatovfe4e05c2019-07-19 12:28:15 +0300251 if (it.name != "kotlinx-coroutines-bom") {
252 if (it.name != coreModule) {
253 dokka.dependsOn project(":$coreModule").dokka
254 tasks.withType(dokka.getClass()) {
255 externalDocumentationLink {
256 url = new URL(core_docs_url)
Roman Elizarov660c2d72020-02-14 13:18:37 +0300257 packageListUrl = new File(core_docs_file).toURI().toURL()
Vsevolod Tolstopyatovfe4e05c2019-07-19 12:28:15 +0300258 }
Roman Elizarov65eff0b2017-12-20 15:51:31 +0300259 }
260 }
Vsevolod Tolstopyatove6e82392018-10-09 19:06:29 +0300261 }
Kirill Timofeeva5186962017-10-25 14:25:47 +0300262}
263
Vsevolod Tolstopyatove50a0fa2019-01-28 11:34:24 +0300264// Report Kotlin compiler version when building project
265println("Using Kotlin compiler version: $org.jetbrains.kotlin.config.KotlinCompilerVersion.VERSION")
266
267// --------------- Configure sub-projects that are published ---------------
Roman Elizarov1ac3dc22020-02-14 15:39:09 +0300268def publishTasks = getTasksByName("publish", true) + getTasksByName("publishNpm", true)
269
Roman Elizarov1ac3dc22020-02-14 15:39:09 +0300270task deploy(dependsOn: publishTasks)
Roman Elizarov94fb2a32018-03-05 17:32:59 +0300271
Kirill Timofeeva5186962017-10-25 14:25:47 +0300272apply plugin: 'base'
273
274clean.dependsOn gradle.includedBuilds.collect { it.task(':clean') }
Roman Elizarov660c2d72020-02-14 13:18:37 +0300275
276// --------------- Knit configuration ---------------
277
278apply plugin: 'kotlinx-knit'
279
280knit {
281 siteRoot = "https://kotlin.github.io/kotlinx.coroutines"
282 moduleRoots = [".", "integration", "reactive", "ui"]
283}
284
Vsevolod Tolstopyatovaff82022020-03-10 19:58:36 +0300285knitPrepare.dependsOn getTasksByName("dokka", true)