aboutsummaryrefslogtreecommitdiff
path: root/dokka-integration-tests/gradle/projects/coroutines/coroutines.diff
blob: 6fcf896c6bd489a1d0d87f66f20c17da16e03a25 (plain)
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
diff --git a/build.gradle b/build.gradle
index e7d405e12..236310823 100644
--- a/build.gradle
+++ b/build.gradle
@@ -59,8 +59,9 @@ buildscript {
     }
 
     dependencies {
+        def dokkaVersion = System.getenv('DOKKA_VERSION')
         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
-        classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
+        classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion"
         classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
         classpath "org.jetbrains.kotlinx:kotlinx-knit:$knit_version"
         classpath "com.github.node-gradle:gradle-node-plugin:$gradle_node_version"
@@ -107,6 +108,9 @@ allprojects {
             mavenLocal()
         }
     }
+    repositories {
+        mavenLocal()
+    }
 
     ext.unpublished = unpublished
 
@@ -142,6 +146,7 @@ allprojects {
         google()
         mavenCentral()
         CommunityProjectsBuild.addDevRepositoryIfEnabled(delegate, project)
+        mavenLocal()
     }
 }
 
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts
index ae54ad0f6..786cff366 100644
--- a/buildSrc/build.gradle.kts
+++ b/buildSrc/build.gradle.kts
@@ -25,6 +25,7 @@ repositories {
     if (buildSnapshotTrain) {
         mavenLocal()
     }
+    mavenLocal()
 }
 
 val gradleProperties = Properties().apply {
@@ -49,12 +50,12 @@ dependencies {
      * our version of Gradle bundles Kotlin 1.4.x and can read metadata only up to 1.5.x,
      * thus we're excluding stdlib compiled with 1.6.0 from dependencies.
      */
-    implementation("org.jetbrains.dokka:dokka-gradle-plugin:${version("dokka")}") {
+    implementation("org.jetbrains.dokka:dokka-gradle-plugin:${System.getenv("DOKKA_VERSION")}") {
         exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk8")
         exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk7")
         exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
     }
-    implementation("org.jetbrains.dokka:dokka-core:${version("dokka")}") {
+    implementation("org.jetbrains.dokka:dokka-core:${System.getenv("DOKKA_VERSION")}") {
         exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk8")
         exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib-jdk7")
         exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib")
diff --git a/buildSrc/settings.gradle.kts b/buildSrc/settings.gradle.kts
index c2e859f65..43dc4f749 100644
--- a/buildSrc/settings.gradle.kts
+++ b/buildSrc/settings.gradle.kts
@@ -14,5 +14,6 @@ pluginManagement {
         if (build_snapshot_train?.toBoolean() == true) {
             mavenLocal()
         }
+        mavenLocal()
     }
 }
diff --git a/gradle.properties b/gradle.properties
index 3d9431be0..9af01ef86 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -14,7 +14,7 @@ atomicfu_version=0.21.0
 knit_version=0.5.0-Beta
 html_version=0.7.2
 lincheck_version=2.18.1
-dokka_version=1.8.10
+dokka_version=non-existing-sanity-check-SNAPSHOT
 byte_buddy_version=1.10.9
 reactor_version=3.4.1
 reactive_streams_version=1.0.3
diff --git a/settings.gradle b/settings.gradle
index 151c087fd..e578bdb93 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -11,6 +11,7 @@ pluginManagement {
     repositories {
         maven { url "https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev/" }
         gradlePluginPortal()
+        mavenLocal()
     }
 }