@@ -94,9 +94,7 @@ object Build {
94
94
// Settings used to configure the test language server
95
95
lazy val ideTestsCompilerVersion = taskKey[String ](" Compiler version to use in IDE tests" )
96
96
lazy val ideTestsCompilerArguments = taskKey[Seq [String ]](" Compiler arguments to use in IDE tests" )
97
- lazy val ideTestsSourceDirectories = taskKey[Seq [File ]](" Source directories to use in IDE tests" )
98
97
lazy val ideTestsDependencyClasspath = taskKey[Seq [File ]](" Dependency classpath to use in IDE tests" )
99
- lazy val ideTestsClassDirectory = taskKey[File ](" Class directory to use in IDE tests" )
100
98
101
99
// Settings shared by the build (scoped in ThisBuild). Used in build.sbt
102
100
lazy val thisBuildSettings = Def .settings(
@@ -847,7 +845,6 @@ object Build {
847
845
settings(
848
846
ideTestsCompilerVersion := (version in `dotty-compiler`).value,
849
847
ideTestsCompilerArguments := (scalacOptions in `dotty-compiler`).value,
850
- ideTestsSourceDirectories := Seq ((baseDirectory in ThisBuild ).value / " out" / " ide-tests" / " src" ),
851
848
ideTestsDependencyClasspath := {
852
849
val dottyLib = (classDirectory in `dotty-library-bootstrapped` in Compile ).value
853
850
val scalaLib =
@@ -858,13 +855,10 @@ object Build {
858
855
.toList
859
856
dottyLib :: scalaLib
860
857
},
861
- ideTestsClassDirectory := (baseDirectory in ThisBuild ).value / " out" / " ide-tests" / " out" ,
862
858
buildInfoKeys in Test := Seq [BuildInfoKey ](
863
859
ideTestsCompilerVersion,
864
860
ideTestsCompilerArguments,
865
- ideTestsSourceDirectories,
866
- ideTestsDependencyClasspath,
867
- ideTestsClassDirectory
861
+ ideTestsDependencyClasspath
868
862
),
869
863
buildInfoPackage in Test := " dotty.tools.languageserver.util.server" ,
870
864
BuildInfoPlugin .buildInfoScopedSettings(Test ),
0 commit comments