Do not pack proguard and stripped jars for kotlin-reflect into compiler zip
kotlin-reflect-proguard.jar has different timestamps and shows difference on each build for the same sources. The problem was introduced after migrating to Gradle 7.1 where `libsDir` parameter was removed (https://docs.gradle.org/current/userguide/upgrading_version_6.html#removal_of_basepluginconvention_libsdir_and_basepluginconvention_distsdir). After that the same variable started to be resolved to `dist` directory. So this commit reverts the old behaviour. ^KTI-672 Fixed
This commit is contained in:
committed by
TeamCityServer
parent
37b5f01a5a
commit
d348efa4c1
@@ -96,7 +96,6 @@ extra["ktorExcludesForDaemon"] = listOf(
|
||||
|
||||
// TODO: use "by extra()" syntax where possible
|
||||
extra["distLibDir"] = project.file(distLibDir)
|
||||
extra["libsDir"] = project.file(distLibDir)
|
||||
extra["commonLocalDataDir"] = project.file(commonLocalDataDir)
|
||||
extra["ideaSandboxDir"] = project.file(ideaSandboxDir)
|
||||
extra["ideaPluginDir"] = project.file(ideaPluginDir)
|
||||
|
||||
Reference in New Issue
Block a user