-
Notifications
You must be signed in to change notification settings - Fork 808
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
54 lines (50 loc) · 1.48 KB
/
settings.gradle.kts
File metadata and controls
54 lines (50 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Copyright 2003-2026 The IdeaVim authors
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE.txt file or at
* https://opensource.org/licenses/MIT.
*/
// Set repository for snapshot versions of gradle plugin
pluginManagement {
repositories {
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
maven {
url = uri("https://cache-redirector.jetbrains.com/packages.jetbrains.team/maven/p/ij/intellij-dependencies")
}
maven {
url = uri("https://cache-redirector.jetbrains.com/plugins.gradle.org/m2")
}
maven {
url = uri("https://cache-redirector.jetbrains.com/repo.maven.apache.org/maven2")
}
mavenCentral()
gradlePluginPortal()
}
}
// Automatically download JDKs from Foojay API when required toolchain is not installed locally
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
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("api")
include("ideavim-common")
include("ideavim-frontend")
include("ideavim-backend")
include("ideavim-acejump")
include("ideavim-rider")
include("ideavim-clion-nova")
include("ideavim-terminal")
include("tests:ui-rd-tests")
include("tests:split-mode-tests")