1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-02-25 11:46:02 +01:00
IntelliJ-IdeaVim/settings.gradle

21 lines
489 B
Groovy
Raw Permalink Normal View History

2022-06-30 08:14:19 +02:00
// Set repository for snapshot versions of gradle plugin
pluginManagement {
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
gradlePluginPortal()
}
}
2019-08-20 12:10:19 +02:00
rootProject.name = 'IdeaVIM'
2022-02-17 16:16:46 +01:00
include 'vim-engine'
2022-12-29 08:26:45 +01:00
include 'scripts'
2023-05-05 08:53:33 +02:00
include 'annotation-processors'
include 'tests:java-tests'
include 'tests:property-tests'
include 'tests:long-running-tests'
2024-02-09 15:11:14 +01:00
include 'tests:ui-ij-tests'
include 'tests:ui-py-tests'
2024-02-09 15:22:22 +01:00
include 'tests:ui-fixtures'