Skip to content

Commit 5edf2d1

Browse files
chore(deps): upgrade to template 2.3.1
1 parent 7e81cdd commit 5edf2d1

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ jobs:
5151
CHANGELOG: ${{ github.event.release.body }}
5252
run: |
5353
RELEASE_NOTE="./build/tmp/release_note.txt"
54+
mkdir -p "$(dirname "$RELEASE_NOTE")"
5455
echo "$CHANGELOG" > $RELEASE_NOTE
55-
${{ github.event.release.body }}
56+
5657
./gradlew patchChangelog --release-note-file=$RELEASE_NOTE
5758
5859
# Publish the plugin to JetBrains Marketplace

build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ dependencies {
5050
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
5151
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
5252

53+
// Module Dependencies. Uses `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
54+
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') })
55+
5356
testFramework(TestFrameworkType.Platform)
5457
}
5558
}

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ platformVersion = 2022.3
1818
platformPlugins =
1919
# Example: platformBundledPlugins = com.intellij.java
2020
platformBundledPlugins =
21+
# Example: platformBundledModules = intellij.spellchecker
22+
platformBundledModules =
2123

2224
# Gradle Releases -> https://github.com/gradle/gradle/releases
2325
gradleVersion = 9.0.0

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ semver4j = "6.0.0"
99

1010
# plugins
1111
changelog = "2.4.0"
12-
intellijPlatform = "2.7.0"
12+
intellijPlatform = "2.7.1"
1313
kotlin = "2.2.0"
1414
kover = "0.9.1"
1515
qodana = "2025.1.1"

0 commit comments

Comments
 (0)