1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-04-03 17:15:47 +02:00
IntelliJ-IdeaVim/settings.gradle.kts
2025-03-14 13:50:52 +02:00

23 lines
535 B
Plaintext

// Set repository for snapshot versions of gradle plugin
pluginManagement {
repositories {
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
gradlePluginPortal()
}
}
rootProject.name = "IdeaVIM"
include("vim-engine")
include("scripts")
include("annotation-processors")
include("tests:java-tests")
include("tests:property-tests")
include("tests:long-running-tests")
include("tests:ui-ij-tests")
include("tests:ui-py-tests")
include("tests:ui-fixtures")
include("tests:ui-rd-tests")