We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce2b4d0 commit 365a696Copy full SHA for 365a696
sbt-dotty/sbt-test/source-dependencies/binary/project/P.scala
@@ -5,10 +5,6 @@ object B extends Build
5
{
6
lazy val dep = Project("dep", file("dep"))
7
lazy val use = Project("use", file("use")) settings(
8
- unmanagedJars in Compile <+= packageBin in (dep, Compile) map Attributed.blank,
9
-
10
- // Disable classpath caching since it does not invalidate modified jars
11
- // (https://github.com/scala/bug/issues/10295)
12
- scalacOptions += "-YdisableFlatCpCaching"
+ unmanagedJars in Compile <+= packageBin in (dep, Compile) map Attributed.blank
13
)
14
}
0 commit comments