mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-06-08 13:34:03 +02:00
Fix antlr4 and antlr4-runtime dependency version conflict
This commit is contained in:
parent
ac41890759
commit
b8b3669b04
@ -38,6 +38,7 @@ val ideaVersion: String by project
|
|||||||
val downloadIdeaSources: String by project
|
val downloadIdeaSources: String by project
|
||||||
val instrumentPluginCode: String by project
|
val instrumentPluginCode: String by project
|
||||||
val remoteRobotVersion: String by project
|
val remoteRobotVersion: String by project
|
||||||
|
val antlrVersion: String by project
|
||||||
|
|
||||||
val publishChannels: String by project
|
val publishChannels: String by project
|
||||||
val publishToken: String by project
|
val publishToken: String by project
|
||||||
@ -66,8 +67,8 @@ dependencies {
|
|||||||
testImplementation("com.intellij.remoterobot:remote-robot:$remoteRobotVersion")
|
testImplementation("com.intellij.remoterobot:remote-robot:$remoteRobotVersion")
|
||||||
testImplementation("com.intellij.remoterobot:remote-fixtures:$remoteRobotVersion")
|
testImplementation("com.intellij.remoterobot:remote-fixtures:$remoteRobotVersion")
|
||||||
testImplementation("com.automation-remarks:video-recorder-junit:2.0")
|
testImplementation("com.automation-remarks:video-recorder-junit:2.0")
|
||||||
runtimeOnly("org.antlr:antlr4-runtime:4.10.1")
|
runtimeOnly("org.antlr:antlr4-runtime:$antlrVersion")
|
||||||
antlr("org.antlr:antlr4:4.9.3")
|
antlr("org.antlr:antlr4:$antlrVersion")
|
||||||
|
|
||||||
implementation(project(":vim-engine"))
|
implementation(project(":vim-engine"))
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@ instrumentPluginCode=true
|
|||||||
version=SNAPSHOT
|
version=SNAPSHOT
|
||||||
javaVersion=11
|
javaVersion=11
|
||||||
remoteRobotVersion=0.11.10
|
remoteRobotVersion=0.11.10
|
||||||
|
antlrVersion=4.10.1
|
||||||
|
|
||||||
# Please don't forget to update kotlin version in buildscript section
|
# Please don't forget to update kotlin version in buildscript section
|
||||||
kotlinVersion=1.5.10
|
kotlinVersion=1.5.10
|
||||||
|
Loading…
Reference in New Issue
Block a user