generated from JetBrains/intellij-platform-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle.kts
32 lines (26 loc) · 860 Bytes
/
settings.gradle.kts
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
import org.jetbrains.intellij.platform.gradle.extensions.intellijPlatform
plugins {
id("org.jetbrains.intellij.platform.settings") version "2.2.1"
}
dependencyResolutionManagement {
// Configure project's dependencies
repositories {
mavenCentral()
// IntelliJ Platform Gradle Plugin Repositories Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-repositories-extension.html
intellijPlatform {
defaultRepositories()
}
}
}
include(
"modules/core",
"modules/products/goland",
"modules/products/gradle",
"modules/products/idea",
"modules/products/nodejs",
"modules/products/rider",
)
rootProject.name = "mise"
rootProject.children.forEach {
it.name = (it.name.replaceFirst("modules/", "mise/").replace("/", "-"))
}