File tree Expand file tree Collapse file tree 3 files changed +9
-20
lines changed Expand file tree Collapse file tree 3 files changed +9
-20
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ fun isWindows(): Boolean {
7
7
return System .getProperty(" os.name" ).lowercase().startsWith(" windows" )
8
8
}
9
9
10
- val nxlsRoot = " ${rootDir} /../../ dist/apps/nxls"
10
+ val nxlsRoot = " ${rootDir} /dist/apps/nxls"
11
11
12
- layout.buildDirectory = file(" ${rootDir} /../../ dist/apps/intellij" )
12
+ layout.buildDirectory = file(" ${rootDir} /dist/apps/intellij" )
13
13
14
14
plugins {
15
15
// Java support
@@ -26,8 +26,6 @@ plugins {
26
26
27
27
id(" com.ncorti.ktfmt.gradle" ) version " 0.24.0"
28
28
id(" dev.nx.gradle.project-graph" ) version " 0.1.8"
29
-
30
-
31
29
}
32
30
33
31
group = providers.gradleProperty(" pluginGroup" ).get()
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ plugins {
12
12
id(" org.jetbrains.kotlin.jvm" ) version " 2.0.21"
13
13
// Kotlin serialization
14
14
id(" org.jetbrains.kotlin.plugin.serialization" ) version " 2.0.21"
15
- // Gradle IntelliJ Platform Plugin
16
15
id(" org.jetbrains.intellij.platform" ) version " 2.9.0"
17
16
}
18
17
Original file line number Diff line number Diff line change @@ -16,29 +16,21 @@ repositories {
16
16
mavenLocal()
17
17
mavenCentral()
18
18
gradlePluginPortal()
19
-
20
19
intellijPlatform { defaultRepositories() }
21
20
}
22
21
23
22
dependencies {
24
23
implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0" )
25
- intellijPlatform {
26
- val type = providers.gradleProperty(" platformType" )
27
- val version = providers.gradleProperty(" platformVersion" )
28
- create(type, version) {
29
- useCache = true
30
- }
24
+ implementation(" com.google.code.gson:gson:2.10.1" )
31
25
32
- bundledPlugins(
33
- providers.gradleProperty(" platformPlugins" ).map { plugins ->
34
- plugins.split(' ,' ).map(String ::trim).filter(String ::isNotEmpty)
35
- }
36
- )
37
- pluginVerifier()
38
- zipSigner()
26
+ intellijPlatform {
27
+ val type = providers.gradleProperty(" platformType" )
28
+ val version = providers.gradleProperty(" platformVersion" )
29
+ create(type, version) {
30
+ useCache = true
31
+ }
39
32
}
40
33
}
41
34
42
35
ktfmt { kotlinLangStyle() }
43
-
44
36
kotlin { jvmToolchain(21 ) }
You can’t perform that action at this time.
0 commit comments