From 02e78bd31d2aab7ecf55318f11c1e6dce4c13759 Mon Sep 17 00:00:00 2001 From: Ethan Atkins Date: Wed, 8 May 2019 18:51:03 -0700 Subject: [PATCH] Add scalaXml to testingProj dependencies This also seemed to be missing once the sbt metabuild classpath stopped leaking into the compiler clAdd scalaXml to testingProj dependencies This also seemed to be missing once the sbt metabuild classpath stopped leaking into the compiler clAdd scalaXml to testingProj dependencies This also seemed to be missing once the sbt metabuild classpath stopped leaking into the compiler clAdd scalaXml to testingProj dependencies This also seemed to be missing once the sbt metabuild classpath stopped leaking into the compiler classpath. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 88126037c..9498f50fd 100644 --- a/build.sbt +++ b/build.sbt @@ -251,7 +251,7 @@ lazy val testingProj = (project in file("testing")) .settings( baseSettings, name := "Testing", - libraryDependencies ++= Seq(testInterface, launcherInterface, sjsonNewScalaJson.value), + libraryDependencies ++= scalaXml.value ++ Seq(testInterface, launcherInterface, sjsonNewScalaJson.value), Compile / scalacOptions += "-Ywarn-unused:-locals,-explicits,-privates", managedSourceDirectories in Compile += baseDirectory.value / "src" / "main" / "contraband-scala",