mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2026-05-04 11:03:08 +02:00
Also, replace all IC dependencies on IU dependencies. The IC is deprecated since the unified release: https://blog.jetbrains.com/platform/2025/11/intellij-platform-2025-3-what-plugin-developers-should-know/
16 lines
357 B
Kotlin
16 lines
357 B
Kotlin
package _Self
|
|
|
|
object Constants {
|
|
const val DEFAULT_CHANNEL = "default"
|
|
const val EAP_CHANNEL = "eap"
|
|
const val DEV_CHANNEL = "Dev"
|
|
|
|
const val NVIM_TESTS = "2025.3"
|
|
const val PROPERTY_TESTS = "2025.3"
|
|
const val LONG_RUNNING_TESTS = "2025.3"
|
|
const val RELEASE = "2025.3"
|
|
|
|
const val RELEASE_DEV = "2025.3"
|
|
const val RELEASE_EAP = "2025.3"
|
|
}
|