Skip to content

Commit a6c3060

Browse files
committed
merge 'upstream/HEAD'
2 parents f0ce01f + e5cd90b commit a6c3060

8 files changed

Lines changed: 25 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,19 @@ jobs:
222222
- name: Fetch Sources
223223
uses: actions/checkout@v6
224224

225+
# Set up the Java environment for the next steps
226+
- name: Setup Java
227+
uses: actions/setup-java@v5
228+
with:
229+
distribution: zulu
230+
java-version: 21
231+
232+
# Setup Gradle
233+
- name: Setup Gradle
234+
uses: gradle/actions/setup-gradle@v5
235+
with:
236+
cache-read-only: true
237+
225238
# Remove old release drafts by using the curl request for the available releases with a draft flag
226239
- name: Remove Old Release Drafts
227240
env:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
name: Release
66
on:
77
release:
8-
types: [prereleased, released]
8+
types: [ prereleased, released ]
99

1010
jobs:
1111

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ changelog {
131131
headerParserRegex = """^((2[0-9]{3})\.(\d+)(\.(\d+))?(-(SNAPSHOT\.(\d+)))?)$"""
132132
header = provider { version.get() }
133133
combinePreReleases = false
134+
versionPrefix = ""
134135
}
135136

136137
// Configure Gradle Kover Plugin - read more:

gradle.properties

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ platformVersion = 2025.3
1818
# useInstaller = false
1919
#}
2020

21+
#current template version
22+
#platformVersion = 2025.2.6.1
23+
2124
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
2225
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
2326
platformPlugins =
@@ -28,7 +31,7 @@ platformBundledPlugins = com.intellij.java, org.jetbrains.plugins.yaml, com.inte
2831
platformBundledModules =
2932

3033
# Gradle Releases -> https://github.com/gradle/gradle/releases
31-
gradleVersion = 9.2.1
34+
gradleVersion = 9.4.1
3235

3336
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
3437
kotlin.stdlib.default.dependency = false

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ mockk = "1.14.7"
77

88
# plugins
99
changelog = "2.5.0" # https://github.com/JetBrains/gradle-changelog-plugin/releases
10-
intelliJPlatform = "2.10.5" # https://github.com/JetBrains/intellij-platform-gradle-plugin/releases
11-
kotlin = "2.2.21" # https://kotlinlang.org/docs/releases.html
12-
kover = "0.9.4"
13-
qodana = "2025.2.2"
10+
intelliJPlatform = "2.13.1" # https://github.com/JetBrains/intellij-platform-gradle-plugin/releases
11+
kotlin = "2.3.20" # https://kotlinlang.org/docs/releases.html
12+
kover = "0.9.7"
13+
qodana = "2025.3.2"
1414
versions = "0.53.0"
1515

1616
[libraries]

gradle/wrapper/gradle-wrapper.jar

3.25 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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-9.2.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)