Skip to content

Commit 72230c8

Browse files
committed
Fix the source-dependencies/binary test
1 parent 86d6dfa commit 72230c8

File tree

1 file changed

+6
-2
lines changed
  • sbt-scripted-tests/sbt-test/source-dependencies/binary/project

1 file changed

+6
-2
lines changed

sbt-scripted-tests/sbt-test/source-dependencies/binary/project/P.scala

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ object B extends Build
55
{
66
lazy val dep = Project("dep", file("dep"))
77
lazy val use = Project("use", file("use")) settings(
8-
unmanagedJars in Compile <+= packageBin in (dep, Compile) map Attributed.blank
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"
913
)
10-
}
14+
}

0 commit comments

Comments
 (0)