Skip to content

Commit e68a7cc

Browse files
committed
sync: 6e3abcc
2 parents d418c41 + 6e3abcc commit e68a7cc

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ intellijPlatform {
5252

5353
val changelog = project.changelog // local variable for configuration cache compatibility
5454
// Get the latest available change notes from the changelog file
55-
changeNotes = providers.gradleProperty("pluginVersion").map { pluginVersion ->
55+
changeNotes = version.map { pluginVersion ->
5656
with(changelog) {
5757
renderItem(
5858
(getOrNull(pluginVersion) ?: getUnreleased())

gradle/libs.versions.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ junit4 = "4.13.2"
55
mockk = "1.14.9"
66

77
# plugins
8-
changelog = "2.5.0" # https://github.com/JetBrains/gradle-changelog-plugin/releases
9-
kotlin = "2.3.20" # https://kotlinlang.org/docs/releases.html
108
kover = "0.9.8"
119
qodana = "2025.3.2"
1210
versions = "0.53.0"
@@ -20,9 +18,9 @@ junit4 = { group = "junit", name = "junit", version.ref = "junit4" }
2018
mockk = { group = "io.mockk", name = "mockk", version.ref = "mockk" }
2119

2220
[plugins]
23-
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
21+
changelog = { id = "org.jetbrains.changelog" }
2422
intelliJPlatform = { id = "org.jetbrains.intellij.platform" }
25-
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
23+
kotlin = { id = "org.jetbrains.kotlin.jvm" }
2624
kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" }
2725
qodana = { id = "org.jetbrains.qodana", version.ref = "qodana" }
2826
versions = { id = "com.github.ben-manes.versions", version.ref = "versions" }

settings.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ pluginManagement {
77
maven("https://central.sonatype.com/repository/maven-snapshots")
88
gradlePluginPortal()
99
}
10+
11+
plugins {
12+
// https://kotlinlang.org/docs/releases.html
13+
id("org.jetbrains.kotlin.jvm") version "2.3.20"
14+
// https://github.com/JetBrains/gradle-changelog-plugin/releases
15+
id("org.jetbrains.changelog") version "2.5.0"
16+
}
1017
}
1118

1219
plugins {

0 commit comments

Comments
 (0)