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'
|
2024-02-07 15:04:10 +01:00
|
|
|
include 'tests:java-tests'
|
2024-02-08 08:14:52 +01:00
|
|
|
include 'tests:property-tests'
|
2024-02-08 08:28:26 +01:00
|
|
|
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'
|