202: Add fastutil dependency to compiler for to make proguard work

This commit is contained in:
Nikolay Krasko
2020-06-05 16:49:14 +03:00
parent cc709a2ef9
commit 143cad78bf
2 changed files with 207 additions and 1 deletions
+4 -1
View File
@@ -1,6 +1,5 @@
@file:Suppress("HasPlatformType")
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import java.util.regex.Pattern.quote
description = "Kotlin Compiler"
@@ -205,6 +204,10 @@ dependencies {
fatJarContents(intellijCoreDep()) { includeJars("intellij-core") }
fatJarContents(intellijDep()) { includeJars("jna-platform") }
if (Platform.P202.orHigher()) {
fatJarContents(intellijDep()) { includeJars("intellij-deps-fastutil-8.3.1-1") }
}
if (Platform.P192.orHigher()) {
fatJarContents(intellijDep()) { includeJars("lz4-java", rootProject = rootProject) }
} else {