File tree Expand file tree Collapse file tree 2 files changed +3
-19
lines changed Expand file tree Collapse file tree 2 files changed +3
-19
lines changed Original file line number Diff line number Diff line change 6
6
"initializeIntellijPlatformPlugin" : {
7
7
"inputs" : [" !{workspaceRoot}/.intellijPlatform" ]
8
8
},
9
+ "runInspections" : {
10
+ "inputs" : [" !{projectRoot}/.intellijPlatform" ]
11
+ },
9
12
"verifyPlugin" : {
10
13
"inputs" : [" !{workspaceRoot}/.intellijPlatform" ],
11
14
"cache" : true
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ plugins {
3
3
id(" java-library" )
4
4
// Kotlin serialization
5
5
id(" org.jetbrains.kotlin.plugin.serialization" ) version " 2.0.21"
6
- // Gradle IntelliJ Platform Plugin
7
- id(" org.jetbrains.intellij.platform.module" )
8
6
}
9
7
10
8
group = providers.gradleProperty(" pluginGroup" ).get()
@@ -16,27 +14,10 @@ repositories {
16
14
mavenLocal()
17
15
mavenCentral()
18
16
gradlePluginPortal()
19
-
20
- intellijPlatform { defaultRepositories() }
21
17
}
22
18
23
19
dependencies {
24
20
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
- }
40
21
}
41
22
42
23
You can’t perform that action at this time.
0 commit comments