Skip to content

Commit 705992b

Browse files
committed
Remove unused settings in Build.scala
1 parent 2ec16c7 commit 705992b

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
@@ -96,9 +96,7 @@ object Build {
9696
// Settings used to configure the test language server
9797
lazy val ideTestsCompilerVersion = taskKey[String]("Compiler version to use in IDE tests")
9898
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")
10099
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")
102100

103101
// Settings shared by the build (scoped in ThisBuild). Used in build.sbt
104102
lazy val thisBuildSettings = Def.settings(
@@ -857,7 +855,6 @@ object Build {
857855
settings(
858856
ideTestsCompilerVersion := (version in `dotty-compiler`).value,
859857
ideTestsCompilerArguments := (scalacOptions in `dotty-compiler`).value,
860-
ideTestsSourceDirectories := Seq((baseDirectory in ThisBuild).value / "out" / "ide-tests" / "src"),
861858
ideTestsDependencyClasspath := {
862859
val dottyLib = (classDirectory in `dotty-library-bootstrapped` in Compile).value
863860
val scalaLib =
@@ -868,13 +865,10 @@ object Build {
868865
.toList
869866
dottyLib :: scalaLib
870867
},
871-
ideTestsClassDirectory := (baseDirectory in ThisBuild).value / "out" / "ide-tests" / "out",
872868
buildInfoKeys in Test := Seq[BuildInfoKey](
873869
ideTestsCompilerVersion,
874870
ideTestsCompilerArguments,
875-
ideTestsSourceDirectories,
876-
ideTestsDependencyClasspath,
877-
ideTestsClassDirectory
871+
ideTestsDependencyClasspath
878872
),
879873
buildInfoPackage in Test := "dotty.tools.languageserver.util.server",
880874
BuildInfoPlugin.buildInfoScopedSettings(Test),

0 commit comments

Comments
 (0)