Skip to content

Commit 3550c7b

Browse files
dependabot[bot]nstdio
authored andcommitted
Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.0 to 2.1.0
Bumps [org.jetbrains.kotlin:kotlin-gradle-plugin](https://github.com/JetBrains/kotlin) from 1.9.0 to 2.1.0. - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](JetBrains/kotlin@v1.9.0...v2.1.0) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5281ada commit 3550c7b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
implementation("io.github.gradle-nexus:publish-plugin:1.3.0")
2828
implementation("net.researchgate:gradle-release:3.0.2")
2929
implementation("com.github.dpaukov:combinatoricslib3:3.4.0")
30-
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0")
30+
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0")
3131
implementation("me.champeau.jmh:jmh-gradle-plugin:0.7.2")
3232
implementation("se.bjurr.gitchangelog:git-changelog-gradle-plugin:2.1.0") {
3333
isTransitive = false

buildSrc/src/main/kotlin/io.github.nstdio.http.ext.library-conventions.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ java {
3434
configurations
3535
.filter { arrayOf("compileClasspath", "runtimeClasspath").contains(it.name) }
3636
.forEach {
37-
it.exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk8")
37+
it.exclude("org.jetbrains.kotlin")
38+
it.exclude("org.jetbrains", "annotations")
3839
}
3940

4041
tasks.named("compileKotlin") {

buildSrc/src/main/kotlin/io.github.nstdio.http.ext.test-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ tasks {
156156

157157
withType<KotlinCompile> {
158158
kotlinOptions {
159-
useK2 = true
159+
languageVersion = "2.0"
160160
jvmTarget = JavaVersion.VERSION_11.toString()
161161
}
162162
}

0 commit comments

Comments
 (0)