Skip to content

Commit a836b9c

Browse files
committed
build with 2025.2.2
1 parent 732c46f commit a836b9c

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

apps/intellij/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import org.jetbrains.changelog.Changelog
22
import org.jetbrains.changelog.markdownToHTML
3+
import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
34
import org.jetbrains.intellij.platform.gradle.tasks.RunIdeTask
45
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
56

@@ -48,11 +49,10 @@ dependencies {
4849
testImplementation("junit:junit:4.13.2")
4950

5051
intellijPlatform {
51-
val type = providers.gradleProperty("platformType")
5252
val version = providers.gradleProperty("platformVersion")
53-
create(type, version) { useCache = true }
53+
create(IntelliJPlatformType.IntellijIdea, version) { useCache = true }
5454

55-
plugin("com.intellij.ml.llm:252.25557.171")
55+
plugin("com.intellij.ml.llm:252.26199.169")
5656
bundledPlugins(
5757
providers.gradleProperty("platformPlugins").map { plugins ->
5858
plugins.split(',').map(String::trim).filter(String::isNotEmpty)

apps/intellij/src/main/kotlin/dev/nx/console/llm/FixCIPEService.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ class FixCIPEService(private val project: Project, private val cs: CoroutineScop
4444
.createChatSession(
4545
ChatCreationContext(
4646
origin = ChatOrigin.CustomIntention,
47-
sourceActionForStatistic = ChatSessionStorage.SourceAction.NEW_CHAT,
48-
null,
47+
sourceActionForStatistic = ChatSourceAction.NEW_CHAT,
4948
)
5049
)
5150
chatSession.setActiveMode(ChatSessionMode.CODE_GENERATION)

gradle.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ version=0.0.1
77
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
88
pluginSinceBuild=252
99
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
10-
platformType=IU
11-
platformVersion=2025.2.1
10+
platformVersion=2025.2.2
1211
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1312
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
1413
platformPlugins=JavaScript, org.jetbrains.plugins.terminal, AngularJS, com.intellij.modules.json, Git4Idea

libs/intellij/models/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
2+
13
plugins {
24
id("java-library")
35
id("org.jetbrains.intellij.platform") version "2.9.0"
@@ -15,9 +17,8 @@ dependencies {
1517
implementation("com.google.code.gson:gson:2.10.1")
1618

1719
intellijPlatform {
18-
val type = providers.gradleProperty("platformType")
1920
val version = providers.gradleProperty("platformVersion")
20-
create(type, version) { useCache = true }
21+
create(IntelliJPlatformType.IntellijIdea, version) { useCache = true }
2122
}
2223
}
2324

0 commit comments

Comments
 (0)