Skip to content

Commit 6ce9f10

Browse files
committed
Enable classpath caching in test case
1 parent ffaa274 commit 6ce9f10

File tree

1 file changed

+1
-5
lines changed
  • sbt-dotty/sbt-test/source-dependencies/binary/project

1 file changed

+1
-5
lines changed

sbt-dotty/sbt-test/source-dependencies/binary/project/P.scala

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ 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,
9-
10-
// Disable classpath caching since it does not invalidate modified jars
11-
// (https://github.com/scala/bug/issues/10295)
12-
scalacOptions += "-YdisableFlatCpCaching"
8+
unmanagedJars in Compile <+= packageBin in (dep, Compile) map Attributed.blank
139
)
1410
}

0 commit comments

Comments
 (0)