mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-24 22:42:53 +01:00
14 lines
337 B
Kotlin
14 lines
337 B
Kotlin
package _Self.vcsRoots
|
|
|
|
import jetbrains.buildServer.configs.kotlin.v2019_2.vcs.GitVcsRoot
|
|
|
|
object ReleasesVcsRoot : GitVcsRoot({
|
|
name = "IdeaVim Releases"
|
|
url = "git@github.com:JetBrains/ideavim.git"
|
|
branch = "refs/heads/master"
|
|
branchSpec = "+:refs/(*)"
|
|
authMethod = uploadedKey {
|
|
uploadedKey = "IdeaVim ssh keys"
|
|
}
|
|
})
|