1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-06 03:34:03 +02:00

Create vim-engine module

This commit is contained in:
Alex Plate 2022-02-17 18:16:46 +03:00
parent 277b4e63c3
commit d26765e217
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
5 changed files with 29 additions and 3 deletions
.gitignorebuild.gradle.ktssettings.gradle
vim-engine
build.gradle
src/main/java/com/maddyhome/idea/vim/common

6
.gitignore vendored
View File

@ -10,9 +10,9 @@
!/.idea/runConfigurations
!/.idea/codeStyles
/build/
/out/
/tmp/
**/build/
**/out/
**/tmp/
*.DS_Store

View File

@ -68,6 +68,8 @@ dependencies {
testImplementation("com.automation-remarks:video-recorder-junit:2.0")
runtimeOnly("org.antlr:antlr4-runtime:4.9.3")
antlr("org.antlr:antlr4:4.9.3")
implementation(project(":vim-engine"))
}
configurations {

View File

@ -1 +1,3 @@
rootProject.name = 'IdeaVIM'
include 'vim-engine'

22
vim-engine/build.gradle Normal file
View 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()
}