mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-02-01 08:45:58 +01:00
24 lines
753 B
Kotlin
24 lines
753 B
Kotlin
package patches.vcsRoots
|
|
|
|
import jetbrains.buildServer.configs.kotlin.v2019_2.*
|
|
import jetbrains.buildServer.configs.kotlin.v2019_2.ui.*
|
|
import jetbrains.buildServer.configs.kotlin.v2019_2.vcs.GitVcsRoot
|
|
|
|
/*
|
|
This patch script was generated by TeamCity on settings change in UI.
|
|
To apply the patch, create a vcsRoot with id = 'IdeaVimCompatibility'
|
|
in the root project, and delete the patch script.
|
|
*/
|
|
create(DslContext.projectId, GitVcsRoot({
|
|
id("IdeaVimCompatibility")
|
|
name = "IdeaVimCompatibility"
|
|
url = "git@github.com:AlexPl292/IdeaVimCompatibility.git"
|
|
branch = "refs/heads/master"
|
|
authMethod = uploadedKey {
|
|
userName = "git"
|
|
uploadedKey = "Alex Plate TeamCity key"
|
|
}
|
|
param("useAlternates", "true")
|
|
}))
|
|
|