mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-15 01:42:45 +01:00
12 lines
298 B
Kotlin
12 lines
298 B
Kotlin
@file:Suppress("ClassName")
|
|
|
|
package _Self.vcsRoots
|
|
|
|
import jetbrains.buildServer.configs.kotlin.v2019_2.vcs.GitVcsRoot
|
|
|
|
object Branch_Release : GitVcsRoot({
|
|
name = "https://github.com/JetBrains/ideavim (branch release)"
|
|
url = "https://github.com/JetBrains/ideavim.git"
|
|
branch = "release"
|
|
})
|