Update lz4 for 192 in :compiler:incremental-compilation

This commit is contained in:
Nikolay Krasko
2019-09-05 13:44:43 +03:00
parent 7968ecef1c
commit 655e77b0dd
@@ -24,8 +24,13 @@ dependencies {
testCompile(projectTests(":compiler:tests-common")) testCompile(projectTests(":compiler:tests-common"))
testCompile(intellijCoreDep()) { includeJars("intellij-core") } testCompile(intellijCoreDep()) { includeJars("intellij-core") }
testCompile(intellijDep()) { includeJars("log4j", "jdom") } testCompile(intellijDep()) { includeJars("log4j", "jdom") }
if (Platform.P192.orHigher()) {
testRuntime(intellijDep()) { includeJars("lz4-java-1.6.0") }
} else {
testRuntime(intellijDep()) { includeJars("lz4-1.3.0") } testRuntime(intellijDep()) { includeJars("lz4-1.3.0") }
} }
}
sourceSets { sourceSets {
"main" { projectDefault() } "main" { projectDefault() }