From 443f12bb13466af2f0b6ec83eeb874f808883fa9 Mon Sep 17 00:00:00 2001 From: ckipp01 Date: Thu, 6 May 2021 15:00:58 +0200 Subject: [PATCH] Remove scala-compiler as a dep. I didn't catch this before, but I'm unsure why this was added in this commit: https://github.com/scoverage/sbt-scoverage/commit/5d298ed9fc032025f2023bf31fe869c0b7361001, but it shouldn't be needed. --- build.sbt | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sbt b/build.sbt index 8c976213..364337b3 100644 --- a/build.sbt +++ b/build.sbt @@ -33,7 +33,6 @@ lazy val root = Project("sbt-scoverage", file(".")) .enablePlugins(SbtPlugin, BuildInfoPlugin) .settings( libraryDependencies ++= Seq( - "org.scala-lang" % "scala-compiler" % scalaVersion.value % Compile, "org.scoverage" %% "scalac-scoverage-plugin" % scoverageVersion cross (CrossVersion.full) ), buildInfoKeys := Seq[BuildInfoKey]("scoverageVersion" -> scoverageVersion),