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 {
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
You can’t perform that action at this time.
0 commit comments