Merge pull request #8200 from eed3si9n/wip/fix-reload

[2.x] fix: Fixes reload
This commit is contained in:
eugene yokota 2025-08-10 11:49:05 -04:00 committed by GitHub
commit 1b056e71d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 4 deletions

View File

@ -2579,10 +2579,16 @@ object Classpaths {
)
private def classpaths: Seq[Setting[?]] =
Seq(
externalDependencyClasspath := concat(unmanagedClasspath, managedClasspath).value,
dependencyClasspath := concat(internalDependencyClasspath, externalDependencyClasspath).value,
fullClasspath := concatDistinct(exportedProducts, dependencyClasspath).value,
internalDependencyClasspath := ClasspathImpl.internalDependencyClasspathTask.value,
externalDependencyClasspath := Def.uncached(
concat(unmanagedClasspath, managedClasspath).value
),
dependencyClasspath := Def.uncached(
concat(internalDependencyClasspath, externalDependencyClasspath).value
),
fullClasspath := Def.uncached(concatDistinct(exportedProducts, dependencyClasspath).value),
internalDependencyClasspath := Def.uncached(
ClasspathImpl.internalDependencyClasspathTask.value
),
unmanagedClasspath := Def.uncached(ClasspathImpl.unmanagedDependenciesTask.value),
managedClasspath := Def.uncached {
val converter = fileConverter.value