File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -801,9 +801,7 @@ object Build {
801
801
// We want the compiler to be present in the compiler classpath when compiling this project but not
802
802
// when compiling a project that depends on dotty-staging (see sbt-dotty/sbt-test/sbt-dotty/quoted-example-project),
803
803
// 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" ).
807
805
settings(commonBootstrappedSettings).
808
806
settings(
809
807
javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value
@@ -814,9 +812,7 @@ object Build {
814
812
// We want the compiler to be present in the compiler classpath when compiling this project but not
815
813
// when compiling a project that depends on dotty-tasty-consumer (see sbt-dotty/sbt-test/sbt-dotty/tasty-consumer-example-project),
816
814
// 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" ).
820
816
settings(commonBootstrappedSettings).
821
817
settings(
822
818
javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value
You can’t perform that action at this time.
0 commit comments