File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 2626 --max-workers=1
2727 env :
2828 GRADLE_USER_HOME : /mnt/gradle-cache
29- GRADLE_OPTS : " -Dorg.gradle.configuration-cache=false -Dorg.gradle.caching=false "
29+ GRADLE_OPTS : " -Dorg.gradle.configuration-cache=false"
3030
3131inputs :
3232 version :
Original file line number Diff line number Diff line change @@ -3,13 +3,15 @@ fun properties(key: String) = providers.gradleProperty(key)
33plugins {
44 id(" java" )
55 id(" org.jetbrains.kotlin.jvm" ) version " 2.1.0"
6- id(" org.jetbrains.intellij.platform" ) version " 2.5.0 "
6+ id(" org.jetbrains.intellij.platform" ) version " 2.10.5 "
77}
88
99group = properties(" pluginGroup" ).get()
1010version = properties(" pluginVersion" ).get()
1111
1212repositories {
13+ gradlePluginPortal()
14+ google()
1315 mavenCentral()
1416
1517 intellijPlatform {
@@ -25,6 +27,8 @@ dependencies {
2527 val version = providers.gradleProperty(" platformVersion" ).getOrElse(" 2024.3" )
2628 create(type, version)
2729
30+ pluginVerifier()
31+
2832 testFramework(org.jetbrains.intellij.platform.gradle.TestFrameworkType .Platform )
2933 bundledPlugin(" JavaScript" )
3034 }
@@ -35,8 +39,7 @@ dependencies {
3539intellijPlatform {
3640 pluginVerification {
3741 ides {
38- // ide(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType.IntellijIdeaCommunity, "2024.3.7")
39- ide(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType .IntellijIdeaCommunity , " 2024.3" )
42+ create(org.jetbrains.intellij.platform.gradle.IntelliJPlatformType .IntellijIdeaCommunity , " 2024.3" )
4043 }
4144 }
4245}
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.12.1 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments