@@ -103,9 +103,7 @@ object Build {
103
103
// Settings used to configure the test language server
104
104
lazy val ideTestsCompilerVersion = taskKey[String ](" Compiler version to use in IDE tests" )
105
105
lazy val ideTestsCompilerArguments = taskKey[Seq [String ]](" Compiler arguments to use in IDE tests" )
106
- lazy val ideTestsSourceDirectories = taskKey[Seq [File ]](" Source directories to use in IDE tests" )
107
106
lazy val ideTestsDependencyClasspath = taskKey[Seq [File ]](" Dependency classpath to use in IDE tests" )
108
- lazy val ideTestsClassDirectory = taskKey[File ](" Class directory to use in IDE tests" )
109
107
110
108
// Settings shared by the build (scoped in ThisBuild). Used in build.sbt
111
109
lazy val thisBuildSettings = Def .settings(
@@ -883,7 +881,6 @@ object Build {
883
881
settings(
884
882
ideTestsCompilerVersion := (version in `dotty-compiler`).value,
885
883
ideTestsCompilerArguments := (scalacOptions in `dotty-compiler`).value,
886
- ideTestsSourceDirectories := Seq ((baseDirectory in ThisBuild ).value / " out" / " ide-tests" / " src" ),
887
884
ideTestsDependencyClasspath := {
888
885
val dottyLib = (classDirectory in `dotty-library-bootstrapped` in Compile ).value
889
886
val scalaLib =
@@ -894,13 +891,10 @@ object Build {
894
891
.toList
895
892
dottyLib :: scalaLib
896
893
},
897
- ideTestsClassDirectory := (baseDirectory in ThisBuild ).value / " out" / " ide-tests" / " out" ,
898
894
buildInfoKeys in Test := Seq [BuildInfoKey ](
899
895
ideTestsCompilerVersion,
900
896
ideTestsCompilerArguments,
901
- ideTestsSourceDirectories,
902
- ideTestsDependencyClasspath,
903
- ideTestsClassDirectory
897
+ ideTestsDependencyClasspath
904
898
),
905
899
buildInfoPackage in Test := " dotty.tools.languageserver.util.server" ,
906
900
BuildInfoPlugin .buildInfoScopedSettings(Test ),
0 commit comments