@@ -17,8 +17,6 @@ val shrink =
17
17
findProperty(" kotlin.build.proguard" )?.toString()?.toBoolean()
18
18
? : hasProperty(" teamcity" )
19
19
20
- val compilerManifestClassPath = " kotlin-stdlib.jar kotlin-reflect.jar kotlin-script-runtime.jar"
21
-
22
20
val fatJarContents by configurations.creating
23
21
24
22
val fatJarContentsStripMetadata by configurations.creating
@@ -31,6 +29,7 @@ val compile by configurations // maven plugin writes pom compile scope from com
31
29
val libraries by configurations.creating {
32
30
extendsFrom(compile)
33
31
}
32
+ val trove4jJar by configurations.creating
34
33
35
34
val default by configurations
36
35
default.extendsFrom(runtimeJar)
@@ -51,6 +50,7 @@ dependencies {
51
50
compile(project(" :kotlin-stdlib" ))
52
51
compile(project(" :kotlin-script-runtime" ))
53
52
compile(project(" :kotlin-reflect" ))
53
+ compile(commonDep(" org.jetbrains.intellij.deps" , " trove4j" ))
54
54
55
55
libraries(project(" :kotlin-annotations-jvm" ))
56
56
libraries(
@@ -69,6 +69,8 @@ dependencies {
69
69
fatSourcesJarContents(it)
70
70
}
71
71
72
+ trove4jJar(intellijDep()) { includeIntellijCoreJarDependencies(project) { it.startsWith(" trove4j" ) } }
73
+
72
74
fatJarContents(project(" :core:builtins" , configuration = " builtins" ))
73
75
fatJarContents(commonDep(" javax.inject" ))
74
76
fatJarContents(commonDep(" org.jline" , " jline" ))
@@ -79,7 +81,11 @@ dependencies {
79
81
fatJarContents(commonDep(" org.jetbrains.kotlinx" , " kotlinx-coroutines-core" )) { isTransitive = false }
80
82
81
83
fatJarContents(intellijCoreDep()) { includeJars(" intellij-core" , " java-compatibility-1.0.1" ) }
82
- fatJarContents(intellijDep()) { includeIntellijCoreJarDependencies(project, { ! (it.startsWith(" jdom" ) || it.startsWith(" log4j" )) }) }
84
+ fatJarContents(intellijDep()) {
85
+ includeIntellijCoreJarDependencies(project) {
86
+ ! (it.startsWith(" jdom" ) || it.startsWith(" log4j" ) || it.startsWith(" trove4j" ))
87
+ }
88
+ }
83
89
fatJarContents(intellijDep()) { includeJars(" jna-platform" , " lz4-1.3.0" ) }
84
90
fatJarContentsStripServices(intellijDep(" jps-standalone" )) { includeJars(" jps-model" ) }
85
91
fatJarContentsStripMetadata(intellijDep()) { includeJars(" oro-2.0.8" , " jdom" , " log4j" ) }
@@ -136,10 +142,9 @@ val proguard by task<ProGuardTask> {
136
142
137
143
val pack = if (shrink) proguard else packCompiler
138
144
139
- dist(
140
- targetName = " $compilerBaseName .jar" ,
141
- fromTask = pack
142
- )
145
+ dist(targetName = " $compilerBaseName .jar" , fromTask = pack) {
146
+ from(trove4jJar)
147
+ }
143
148
144
149
runtimeJarArtifactBy(pack, pack.outputs.files.singleFile) {
145
150
name = compilerBaseName
0 commit comments