Skip to content

Commit 4c51f63

Browse files
committed
feat: to 2.1.0
1 parent 532331f commit 4c51f63

5 files changed

+13
-5
lines changed

buildSrc/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ kotlin {
3030
}
3131

3232
dependencies {
33-
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin")
33+
implementation(libs.org.jetbrains.kotlin.gradle.plugin)
3434
}

buildSrc/settings.gradle.kts

+8
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1+
dependencyResolutionManagement {
2+
versionCatalogs {
3+
create("libs") {
4+
from(files("../gradle/libs.versions.toml"))
5+
}
6+
}
7+
}
8+
19
rootProject.name = "build-conventions"

gradle/libs.versions.toml

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ org-openjdk-jmh-core = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh
4040

4141
org-xerial-sqlite-jdbc = { module = "org.xerial:sqlite-jdbc", version = "3.41.2.1" }
4242

43+
# buildSrc
44+
org-jetbrains-kotlin-gradle-plugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin",version.ref = "kotlinVersion" }
45+
4346
[plugins]
4447
com-github-jk1-tcdeps = { id = "com.github.jk1.tcdeps", version = "1.2" }
4548
com-jaredsburrows-license = { id = "com.jaredsburrows.license", version = "0.8.42" }

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle.kts

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ pluginManagement {
33
gradlePluginPortal()
44
maven("https://cache-redirector.jetbrains.com/kotlin.bintray.com/kotlin-plugin")
55
}
6-
plugins {
7-
kotlin("jvm") version "2.1.0" apply false
8-
}
96
}
107

118
rootProject.name = "kotlin-language-server"

0 commit comments

Comments
 (0)