Skip to content

Commit 3cb9c2d

Browse files
committed
Remove unused settings in Build.scala
1 parent 82ff970 commit 3cb9c2d

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(
@@ -877,7 +875,6 @@ object Build {
877875
settings(
878876
ideTestsCompilerVersion := (version in `dotty-compiler`).value,
879877
ideTestsCompilerArguments := (scalacOptions in `dotty-compiler`).value,
880-
ideTestsSourceDirectories := Seq((baseDirectory in ThisBuild).value / "out" / "ide-tests" / "src"),
881878
ideTestsDependencyClasspath := {
882879
val dottyLib = (classDirectory in `dotty-library-bootstrapped` in Compile).value
883880
val scalaLib =
@@ -888,13 +885,10 @@ object Build {
888885
.toList
889886
dottyLib :: scalaLib
890887
},
891-
ideTestsClassDirectory := (baseDirectory in ThisBuild).value / "out" / "ide-tests" / "out",
892888
buildInfoKeys in Test := Seq[BuildInfoKey](
893889
ideTestsCompilerVersion,
894890
ideTestsCompilerArguments,
895-
ideTestsSourceDirectories,
896-
ideTestsDependencyClasspath,
897-
ideTestsClassDirectory
891+
ideTestsDependencyClasspath
898892
),
899893
buildInfoPackage in Test := "dotty.tools.languageserver.util.server",
900894
BuildInfoPlugin.buildInfoScopedSettings(Test),

0 commit comments

Comments
 (0)