We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86d6dfa commit 72230c8Copy full SHA for 72230c8
sbt-scripted-tests/sbt-test/source-dependencies/binary/project/P.scala
@@ -5,6 +5,10 @@ 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
+ 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"
13
)
-}
14
+}
0 commit comments