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