1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2024-10-18 19:42:46 +02:00
IntelliJ-IdeaVim/.teamcity/_Self/Constants.kt
Alex Plate 0c66fb474e
Fix(VIM-3130): Change the build version to 2023.1.2
There is a problem with building IdeaVim on newer version. Some of the internal classes
was migrated from java to kotlin. However, this change is not binary compatible because of a kotlin bug.
Building IdeaVim on java version of this class fixes this problem.
2023-11-07 09:43:11 +02:00

18 lines
445 B
Kotlin

package _Self
object Constants {
const val DEFAULT_CHANNEL = "default"
const val EAP_CHANNEL = "eap"
const val DEV_CHANNEL = "Dev"
const val GITHUB_TESTS = "2023.1.2"
const val NVIM_TESTS = "2023.1.2"
const val PROPERTY_TESTS = "2023.1.2"
const val LONG_RUNNING_TESTS = "2023.1.2"
const val QODANA_TESTS = "2023.1.2"
const val RELEASE = "2023.1.2"
const val RELEASE_DEV = "2023.1.2"
const val RELEASE_EAP = "2023.1.2"
}