Skip to content

Commit 9c6a8b6

Browse files
committed
Remove unused settings in Build.scala
1 parent 9ef88ae commit 9c6a8b6

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

project/Build.scala

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,7 @@ object Build {
103103
// Settings used to configure the test language server
104104
lazy val ideTestsCompilerVersion = taskKey[String]("Compiler version to use in IDE tests")
105105
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")
107106
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")
109107

110108
// Settings shared by the build (scoped in ThisBuild). Used in build.sbt
111109
lazy val thisBuildSettings = Def.settings(
@@ -883,7 +881,6 @@ object Build {
883881
settings(
884882
ideTestsCompilerVersion := (version in `dotty-compiler`).value,
885883
ideTestsCompilerArguments := (scalacOptions in `dotty-compiler`).value,
886-
ideTestsSourceDirectories := Seq((baseDirectory in ThisBuild).value / "out" / "ide-tests" / "src"),
887884
ideTestsDependencyClasspath := {
888885
val dottyLib = (classDirectory in `dotty-library-bootstrapped` in Compile).value
889886
val scalaLib =
@@ -894,13 +891,10 @@ object Build {
894891
.toList
895892
dottyLib :: scalaLib
896893
},
897-
ideTestsClassDirectory := (baseDirectory in ThisBuild).value / "out" / "ide-tests" / "out",
898894
buildInfoKeys in Test := Seq[BuildInfoKey](
899895
ideTestsCompilerVersion,
900896
ideTestsCompilerArguments,
901-
ideTestsSourceDirectories,
902-
ideTestsDependencyClasspath,
903-
ideTestsClassDirectory
897+
ideTestsDependencyClasspath
904898
),
905899
buildInfoPackage in Test := "dotty.tools.languageserver.util.server",
906900
BuildInfoPlugin.buildInfoScopedSettings(Test),

0 commit comments

Comments
 (0)