-
Notifications
You must be signed in to change notification settings - Fork 214
/
settings.gradle.kts
35 lines (31 loc) · 1.1 KB
/
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
33
34
35
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://cache-redirector.jetbrains.com/kotlin.bintray.com/kotlin-plugin")
}
// Centralize plugin versions.
// Ensure these plugins use the same version from the /gradle/platform/build.gradle.kts
// otherwise you'll get an exception during Gradle's configuration phase
// stating that the plugin with the specified (or unspecified) version
// cannot be found.
//
// Once declared here, subsequent plugin blocks in the build don't require
// a version to be applied. They inherit the versions from the following
// block.
//
// This can be verified by running the dependencies task via
// ./gradlew dependencies
plugins {
id("application") apply false
id("maven-publish") apply false
kotlin("jvm") version "1.8.10" apply false
id("com.github.jk1.tcdeps") version "1.2" apply false
id("com.jaredsburrows.license") version "0.8.42" apply false
}
}
rootProject.name = "kotlin-language-server"
include(
"platform",
"shared",
"server"
)