mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-25 16:42:55 +01:00
0c66fb474e
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.
18 lines
445 B
Kotlin
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"
|
|
}
|