Skip to content

Commit 2965fd7

Browse files
committed
chore(gradle): remove intellij from models
1 parent 2ee8f44 commit 2965fd7

File tree

2 files changed

+3
-19
lines changed

2 files changed

+3
-19
lines changed

apps/intellij/project.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"initializeIntellijPlatformPlugin": {
77
"inputs": ["!{workspaceRoot}/.intellijPlatform"]
88
},
9+
"runInspections": {
10+
"inputs": ["!{projectRoot}/.intellijPlatform"]
11+
},
912
"verifyPlugin": {
1013
"inputs": ["!{workspaceRoot}/.intellijPlatform"],
1114
"cache": true

libs/intellij/models/build.gradle.kts

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ plugins {
33
id("java-library")
44
// Kotlin serialization
55
id("org.jetbrains.kotlin.plugin.serialization") version "2.0.21"
6-
// Gradle IntelliJ Platform Plugin
7-
id("org.jetbrains.intellij.platform.module")
86
}
97

108
group = providers.gradleProperty("pluginGroup").get()
@@ -16,27 +14,10 @@ repositories {
1614
mavenLocal()
1715
mavenCentral()
1816
gradlePluginPortal()
19-
20-
intellijPlatform { defaultRepositories() }
2117
}
2218

2319
dependencies {
2420
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2")
25-
intellijPlatform {
26-
val type = providers.gradleProperty("platformType")
27-
val version = providers.gradleProperty("platformVersion")
28-
create(type, version) {
29-
useCache = true
30-
}
31-
32-
bundledPlugins(
33-
providers.gradleProperty("platformPlugins").map { plugins ->
34-
plugins.split(',').map(String::trim).filter(String::isNotEmpty)
35-
}
36-
)
37-
pluginVerifier()
38-
zipSigner()
39-
}
4021
}
4122

4223

0 commit comments

Comments
 (0)