Skip to content

Commit c814ac9

Browse files
committed
Join dependencies
1 parent 9b8c2ff commit c814ac9

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

project/Build.scala

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -801,9 +801,7 @@ object Build {
801801
// We want the compiler to be present in the compiler classpath when compiling this project but not
802802
// when compiling a project that depends on dotty-staging (see sbt-dotty/sbt-test/sbt-dotty/quoted-example-project),
803803
// but we always need it to be present on the JVM classpath at runtime.
804-
dependsOn(dottyCompiler(Bootstrapped) % "provided").
805-
dependsOn(dottyCompiler(Bootstrapped) % "compile->runtime").
806-
dependsOn(dottyCompiler(Bootstrapped) % "test->test").
804+
dependsOn(dottyCompiler(Bootstrapped) % "provided; compile->runtime; test->test").
807805
settings(commonBootstrappedSettings).
808806
settings(
809807
javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value
@@ -814,9 +812,7 @@ object Build {
814812
// We want the compiler to be present in the compiler classpath when compiling this project but not
815813
// when compiling a project that depends on dotty-tasty-consumer (see sbt-dotty/sbt-test/sbt-dotty/tasty-consumer-example-project),
816814
// but we always need it to be present on the JVM classpath at runtime.
817-
dependsOn(dottyCompiler(Bootstrapped) % "provided").
818-
dependsOn(dottyCompiler(Bootstrapped) % "compile->runtime").
819-
dependsOn(dottyCompiler(Bootstrapped) % "test->test").
815+
dependsOn(dottyCompiler(Bootstrapped) % "provided; compile->runtime; test->test").
820816
settings(commonBootstrappedSettings).
821817
settings(
822818
javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value

0 commit comments

Comments
 (0)