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:
Nikolay Krasko
2021-10-21 15:58:16 +03:00
committed by TeamCityServer
parent 37b5f01a5a
commit d348efa4c1
2 changed files with 4 additions and 6 deletions
-1
View File
@@ -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)