Skip to content

Commit 848e72b

Browse files
committed
chore: Update IntelliJ Platform 2.0.1
1 parent d37d2f9 commit 848e72b

4 files changed

Lines changed: 25 additions & 22 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- Update IntelliJ Platform 1.14.1
99
- Update IntelliJ Platform 1.14.2
1010
- Update IntelliJ Platform 2.0.0
11+
- Update IntelliJ Platform 2.0.1
1112

1213
## [2024.2.0]
1314

build.gradle.kts

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import org.jetbrains.changelog.Changelog
22
import org.jetbrains.changelog.markdownToHTML
3-
import org.jetbrains.intellij.platform.gradle.Constants.Constraints
43
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
54

65
plugins {
@@ -103,8 +102,7 @@ intellijPlatform {
103102
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
104103
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
105104
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
106-
channels = providers.gradleProperty("pluginVersion")
107-
.map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
105+
channels = providers.gradleProperty("pluginVersion").map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) }
108106
}
109107

110108
pluginVerification {
@@ -141,19 +139,23 @@ tasks {
141139
}
142140
}
143141

144-
val runIdeForUiTests by intellijPlatformTesting.runIde.registering {
145-
task {
146-
jvmArgumentProviders += CommandLineArgumentProvider {
147-
listOf(
148-
"-Drobot-server.port=8082",
149-
"-Dide.mac.message.dialogs.as.sheets=false",
150-
"-Djb.privacy.policy.text=<!--999.999-->",
151-
"-Djb.consents.confirmation.enabled=false",
152-
)
153-
}
154-
}
142+
intellijPlatformTesting {
143+
runIde {
144+
register("runIdeForUiTests") {
145+
task {
146+
jvmArgumentProviders += CommandLineArgumentProvider {
147+
listOf(
148+
"-Drobot-server.port=8082",
149+
"-Dide.mac.message.dialogs.as.sheets=false",
150+
"-Djb.privacy.policy.text=<!--999.999-->",
151+
"-Djb.consents.confirmation.enabled=false",
152+
)
153+
}
154+
}
155155

156-
plugins {
157-
robotServerPlugin(Constraints.LATEST_VERSION)
156+
plugins {
157+
robotServerPlugin()
158+
}
159+
}
158160
}
159161
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ pluginGroup = ru.panteleev.bitrix-idea
22
pluginName = Bitrix Idea
33
pluginRepositoryUrl = https://github.com/saundefined/bitrix-idea
44
pluginVersion = 2024.2.0
5-
pluginSinceBuild = 232
5+
pluginSinceBuild = 233
66
pluginUntilBuild = 242.*
77
platformType = IC
8-
platformVersion = 2023.2.7
8+
platformVersion = 2023.3.7
99
platformPlugins =
1010
platformBundledPlugins =
1111
gradleVersion = 8.9

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ junit = "4.13.2"
44

55
# plugins
66
changelog = "2.2.1"
7-
intelliJPlatform = "2.0.0"
8-
kotlin = "1.9.24"
9-
kover = "0.8.1"
10-
qodana = "2024.1.5"
7+
intelliJPlatform = "2.0.1"
8+
kotlin = "1.9.25"
9+
kover = "0.8.3"
10+
qodana = "2024.1.9"
1111

1212
[libraries]
1313
junit = { group = "junit", name = "junit", version.ref = "junit" }

0 commit comments

Comments
 (0)