Skip to content

Commit 61fc9d3

Browse files
committed
chore(intellij): update dependencies and gradle
1 parent 90673bf commit 61fc9d3

File tree

7 files changed

+13
-17
lines changed

7 files changed

+13
-17
lines changed

intellij-client/gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pluginVersion = 2.1.0
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 251
11-
pluginUntilBuild = 261.*
11+
pluginUntilBuild = 271.*
1212

1313

1414
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
@@ -18,14 +18,14 @@ platformVersion = 2025.1
1818
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1919
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
2020
#platformPlugins = com.redhat.devtools.lsp4ij:0.13.0-20250502-121924@nightly
21-
platformPlugins = com.redhat.devtools.lsp4ij:0.14.2
21+
platformPlugins = com.redhat.devtools.lsp4ij:0.19.1
2222

2323

2424
# Example: platformBundledPlugins = com.intellij.java
2525
platformBundledPlugins = PythonCore, org.jetbrains.plugins.textmate
2626

2727
# Gradle Releases -> https://github.com/gradle/gradle/releases
28-
gradleVersion = 8.14
28+
gradleVersion = 9.2.1
2929

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

intellij-client/gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ junit = "4.13.2"
66
lsp4j = "0.21.1"
77

88
# plugins
9-
changelog = "2.2.1"
10-
intelliJPlatForm = "2.7.2"
11-
kotlin = "2.1.10"
12-
kover = "0.9.1"
9+
changelog = "2.5.0"
10+
intelliJPlatForm = "2.10.5"
11+
kotlin = "2.3.0"
12+
kover = "0.9.4"
1313

1414
[libraries.lsp4j]
1515
group = "org.eclipse.lsp4j"
2 KB
Binary file not shown.

intellij-client/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-8.14-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

intellij-client/gradlew

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -114,7 +114,6 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

117-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
118117

119118

120119
# Determine the Java command to use to start the JVM.
@@ -172,7 +171,6 @@ fi
172171
# For Cygwin or MSYS, switch paths to Windows format before running java
173172
if "$cygwin" || "$msys" ; then
174173
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
175-
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
176174

177175
JAVACMD=$( cygpath --unix "$JAVACMD" )
178176

@@ -205,15 +203,14 @@ fi
205203
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206204

207205
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
206+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209207
# and any embedded shellness will be escaped.
210208
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211209
# treated as '${Hostname}' itself on the command line.
212210

213211
set -- \
214212
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215-
-classpath "$CLASSPATH" \
216-
org.gradle.wrapper.GradleWrapperMain \
213+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217214
"$@"
218215

219216
# Stop when "xargs" is not available.

intellij-client/gradlew.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,10 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

73-
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
7473

7574

7675
@rem Execute Gradle
77-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
76+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7877

7978
:end
8079
@rem End local scope for the variables with windows NT shell
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
2+
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
33
}
44

55
rootProject.name = "robotcode4ij"

0 commit comments

Comments
 (0)