mirror of https://github.com/sbt/sbt.git
Fix cache key
This commit is contained in:
parent
5db01b37d6
commit
8a0b083125
|
|
@ -225,6 +225,7 @@ object Tasks {
|
||||||
private case class ResolutionCacheKey(
|
private case class ResolutionCacheKey(
|
||||||
project: Project,
|
project: Project,
|
||||||
repositories: Seq[Repository],
|
repositories: Seq[Repository],
|
||||||
|
userEnabledProfiles: Set[String],
|
||||||
resolution: Resolution,
|
resolution: Resolution,
|
||||||
sbtClassifiers: Boolean
|
sbtClassifiers: Boolean
|
||||||
)
|
)
|
||||||
|
|
@ -599,7 +600,8 @@ object Tasks {
|
||||||
ResolutionCacheKey(
|
ResolutionCacheKey(
|
||||||
currentProject,
|
currentProject,
|
||||||
repositories,
|
repositories,
|
||||||
startRes.copy(filter = None),
|
userEnabledProfiles,
|
||||||
|
startRes.copy(filter = None, profileActivation = None),
|
||||||
sbtClassifiers
|
sbtClassifiers
|
||||||
),
|
),
|
||||||
resolution
|
resolution
|
||||||
|
|
@ -830,7 +832,7 @@ object Tasks {
|
||||||
reportsCache.getOrElseUpdate(
|
reportsCache.getOrElseUpdate(
|
||||||
ReportCacheKey(
|
ReportCacheKey(
|
||||||
currentProject,
|
currentProject,
|
||||||
res,
|
res.copy(filter = None, profileActivation = None),
|
||||||
withClassifiers,
|
withClassifiers,
|
||||||
sbtClassifiers
|
sbtClassifiers
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue