mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-28 08:34:02 +02:00
Create vim-engine module
This commit is contained in:
parent
277b4e63c3
commit
d26765e217
6
.gitignore
vendored
6
.gitignore
vendored
@ -10,9 +10,9 @@
|
|||||||
!/.idea/runConfigurations
|
!/.idea/runConfigurations
|
||||||
!/.idea/codeStyles
|
!/.idea/codeStyles
|
||||||
|
|
||||||
/build/
|
**/build/
|
||||||
/out/
|
**/out/
|
||||||
/tmp/
|
**/tmp/
|
||||||
|
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
|
|
||||||
|
@ -68,6 +68,8 @@ dependencies {
|
|||||||
testImplementation("com.automation-remarks:video-recorder-junit:2.0")
|
testImplementation("com.automation-remarks:video-recorder-junit:2.0")
|
||||||
runtimeOnly("org.antlr:antlr4-runtime:4.9.3")
|
runtimeOnly("org.antlr:antlr4-runtime:4.9.3")
|
||||||
antlr("org.antlr:antlr4:4.9.3")
|
antlr("org.antlr:antlr4:4.9.3")
|
||||||
|
|
||||||
|
implementation(project(":vim-engine"))
|
||||||
}
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
|
@ -1 +1,3 @@
|
|||||||
rootProject.name = 'IdeaVIM'
|
rootProject.name = 'IdeaVIM'
|
||||||
|
include 'vim-engine'
|
||||||
|
|
||||||
|
22
vim-engine/build.gradle
Normal file
22
vim-engine/build.gradle
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
plugins {
|
||||||
|
id 'java'
|
||||||
|
id 'org.jetbrains.kotlin.jvm'
|
||||||
|
}
|
||||||
|
|
||||||
|
group 'org.jetbrains.ideavim'
|
||||||
|
version 'SNAPSHOT'
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
||||||
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
||||||
|
|
||||||
|
compileOnly 'org.jetbrains:annotations:23.0.0'
|
||||||
|
}
|
||||||
|
|
||||||
|
test {
|
||||||
|
useJUnitPlatform()
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user