Skip to content

Commit 693f3f7

Browse files
committed
Remove scalaCompilerBridgeSource setting
It is automatically set correctly for dotty by sbt 0.13.15
1 parent 991b198 commit 693f3f7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

project/Build.scala

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ object Build {
9898
scalaOrganization := dottyOrganization,
9999
scalaVersion := dottyVersion,
100100
scalaBinaryVersion := "2.11",
101-
scalaCompilerBridgeSource :=
102-
(dottyOrganization % "dotty-sbt-bridge" % scalaVersion.value % "component").sources(),
103101

104102
// sbt gets very unhappy if two projects use the same target
105103
target := baseDirectory.value / ".." / "out" / name.value,
@@ -619,8 +617,7 @@ object DottyInjectedPlugin extends AutoPlugin {
619617
scalacOptions += "-language:Scala2",
620618
scalaBinaryVersion := "2.11",
621619
autoScalaLibrary := false,
622-
libraryDependencies ++= Seq("org.scala-lang" % "scala-library" % "2.11.5"),
623-
scalaCompilerBridgeSource := ("ch.epfl.lamp" % "dotty-sbt-bridge" % scalaVersion.value % "component").sources()
620+
libraryDependencies ++= Seq("org.scala-lang" % "scala-library" % "2.11.5")
624621
)
625622
}
626623
""")

0 commit comments

Comments
 (0)