Skip to content

Commit 6f04d84

Browse files
committed
fix(docs): use ssh:// for documentation VCS roots
1 parent ba8a050 commit 6f04d84

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.teamcity/documentation/vcsRoots/DocumentationRoots.kt

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ package documentation.vcsRoots
22

33
import jetbrains.buildServer.configs.kotlin.vcs.GitVcsRoot
44

5-
65
// KmpRoots
76
object KotlinMultiplatformVCS: GitVcsRoot ({
87
name = "Kotlin Multiplatform root"
9-
url = "https://github.com/JetBrains/kotlin-multiplatform-dev-docs.git"
8+
url = "git@github.com:JetBrains/kotlin-multiplatform-dev-docs.git"
109
branch = "refs/heads/master"
1110
branchSpec = "+:refs/heads/*"
1211
checkoutPolicy = AgentCheckoutPolicy.NO_MIRRORS
@@ -18,7 +17,7 @@ object KotlinMultiplatformVCS: GitVcsRoot ({
1817
// Kotlin Reference With Coroutine Roots
1918
object KotlinReferenceRoot: GitVcsRoot ({
2019
name = "Kotlin Reference"
21-
url = "https://github.com/JetBrains/kotlin-web-site.git"
20+
url = "git@github.com:JetBrains/kotlin-web-site.git"
2221
branch = "refs/heads/master"
2322
branchSpec = "+:refs/heads/*"
2423
checkoutPolicy = AgentCheckoutPolicy.NO_MIRRORS
@@ -30,7 +29,7 @@ object KotlinReferenceRoot: GitVcsRoot ({
3029

3130
object KotlinxCoroutinesRoot: GitVcsRoot ({
3231
name = "Kotlinx Coroutines"
33-
url = "https://github.com/Kotlin/kotlinx.coroutines.git"
32+
url = "git@github.com:Kotlin/kotlinx.coroutines.git"
3433
branch = "refs/heads/master"
3534
branchSpec = "+:refs/heads/*"
3635
checkoutPolicy = AgentCheckoutPolicy.NO_MIRRORS
@@ -41,7 +40,7 @@ object KotlinxCoroutinesRoot: GitVcsRoot ({
4140

4241
object KotlinxLincheckRoot: GitVcsRoot ({
4342
name = "Kotlinx Lincheck"
44-
url = "https://github.com/JetBrains/lincheck.git"
43+
url = "git@github.com:JetBrains/lincheck.git"
4544
branch = "refs/heads/master"
4645
branchSpec = "+:refs/heads/*"
4746
checkoutPolicy = AgentCheckoutPolicy.NO_MIRRORS
@@ -52,7 +51,7 @@ object KotlinxLincheckRoot: GitVcsRoot ({
5251

5352
object DokkaRoot: GitVcsRoot ({
5453
name = "Dokka"
55-
url = "https://github.com/Kotlin/dokka.git"
54+
url = "git@github.com:Kotlin/dokka.git"
5655
branch = "refs/heads/master"
5756
branchSpec = "+:refs/heads/*"
5857
checkoutPolicy = AgentCheckoutPolicy.NO_MIRRORS
@@ -63,7 +62,7 @@ object DokkaRoot: GitVcsRoot ({
6362

6463
object APIGuidelinesRoot: GitVcsRoot ({
6564
name = "API Guidelines"
66-
url = "https://github.com/Kotlin/api-guidelines.git"
65+
url = "git@github.com:Kotlin/api-guidelines.git"
6766
branch = "refs/heads/main"
6867
branchSpec = "+:refs/heads/*"
6968
checkoutPolicy = AgentCheckoutPolicy.NO_MIRRORS

0 commit comments

Comments
 (0)