@@ -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(
@@ -877,7 +875,6 @@ object Build {
877
875
settings(
878
876
ideTestsCompilerVersion := (version in `dotty-compiler`).value,
879
877
ideTestsCompilerArguments := (scalacOptions in `dotty-compiler`).value,
880
- ideTestsSourceDirectories := Seq ((baseDirectory in ThisBuild ).value / " out" / " ide-tests" / " src" ),
881
878
ideTestsDependencyClasspath := {
882
879
val dottyLib = (classDirectory in `dotty-library-bootstrapped` in Compile ).value
883
880
val scalaLib =
@@ -888,13 +885,10 @@ object Build {
888
885
.toList
889
886
dottyLib :: scalaLib
890
887
},
891
- ideTestsClassDirectory := (baseDirectory in ThisBuild ).value / " out" / " ide-tests" / " out" ,
892
888
buildInfoKeys in Test := Seq [BuildInfoKey ](
893
889
ideTestsCompilerVersion,
894
890
ideTestsCompilerArguments,
895
- ideTestsSourceDirectories,
896
- ideTestsDependencyClasspath,
897
- ideTestsClassDirectory
891
+ ideTestsDependencyClasspath
898
892
),
899
893
buildInfoPackage in Test := " dotty.tools.languageserver.util.server" ,
900
894
BuildInfoPlugin .buildInfoScopedSettings(Test ),
0 commit comments