@@ -2,6 +2,8 @@ package documentation.vcsRoots
2
2
3
3
import jetbrains.buildServer.configs.kotlin.vcs.GitVcsRoot
4
4
5
+
6
+ // KmpRoots
5
7
object KotlinMultiplatformVCS: GitVcsRoot ({
6
8
name = " Kotlin Multiplatform root"
7
9
url = " https://github.com/JetBrains/kotlin-multiplatform-dev-docs.git"
@@ -12,3 +14,59 @@ object KotlinMultiplatformVCS: GitVcsRoot ({
12
14
uploadedKey = " default teamcity key"
13
15
}
14
16
})
17
+
18
+ // Kotlin Reference With Coroutine Roots
19
+ object KotlinReferenceRoot: GitVcsRoot ({
20
+ name = " Kotlin Reference"
21
+ url = " https://github.com/JetBrains/kotlin-web-site.git"
22
+ branch = " refs/heads/master"
23
+ branchSpec = " +:refs/heads/*"
24
+ checkoutPolicy = AgentCheckoutPolicy .AUTO
25
+ authMethod = uploadedKey {
26
+ uploadedKey = " default teamcity key"
27
+ }
28
+ })
29
+
30
+ object KotlinxCoroutinesRoot: GitVcsRoot ({
31
+ name = " Kotlinx Coroutines"
32
+ url = " https://github.com/Kotlin/kotlinx.coroutines.git"
33
+ branch = " refs/heads/master"
34
+ branchSpec = " +:refs/heads/*"
35
+ checkoutPolicy = AgentCheckoutPolicy .AUTO
36
+ authMethod = uploadedKey {
37
+ uploadedKey = " default teamcity key"
38
+ }
39
+ })
40
+
41
+ object KotlinxLincheckRoot: GitVcsRoot ({
42
+ name = " Kotlinx Lincheck"
43
+ url = " https://github.com/JetBrains/lincheck.git"
44
+ branch = " refs/heads/master"
45
+ branchSpec = " +:refs/heads/*"
46
+ checkoutPolicy = AgentCheckoutPolicy .AUTO
47
+ authMethod = uploadedKey {
48
+ uploadedKey = " default teamcity key"
49
+ }
50
+ })
51
+
52
+ object DokkaRoot: GitVcsRoot ({
53
+ name = " Dokka"
54
+ url = " https://github.com/Kotlin/dokka.git"
55
+ branch = " refs/heads/master"
56
+ branchSpec = " +:refs/heads/*"
57
+ checkoutPolicy = AgentCheckoutPolicy .AUTO
58
+ authMethod = uploadedKey {
59
+ uploadedKey = " default teamcity key"
60
+ }
61
+ })
62
+
63
+ object APIGuidelinesRoot: GitVcsRoot ({
64
+ name = " API Guidelines"
65
+ url = " https://github.com/Kotlin/api-guidelines.git"
66
+ branch = " refs/heads/master"
67
+ branchSpec = " +:refs/heads/*"
68
+ checkoutPolicy = AgentCheckoutPolicy .AUTO
69
+ authMethod = uploadedKey {
70
+ uploadedKey = " default teamcity key"
71
+ }
72
+ })
0 commit comments