Skip to content

Commit 87a53b8

Browse files
committed
Added report project
1 parent c24ed10 commit 87a53b8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

project/Scoverage.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,20 @@ object Scoverage extends Build {
6666
.settings(name := "scalac-scoverage")
6767
.settings(appSettings: _*)
6868
.settings(publishArtifact := false)
69-
.aggregate(plugin, runtime)
69+
.aggregate(plugin, runtime, report)
7070

7171
lazy val runtime = Project("scalac-scoverage-runtime", file("scalac-scoverage-runtime"))
7272
.settings(name := "scalac-scoverage-runtime")
7373
.settings(appSettings: _*)
7474

75+
lazy val report = Project("scalac-scoverage-runtime", file("scalac-scoverage-runtime"))
76+
.settings(name := "scalac-scoverage-report")
77+
.settings(appSettings: _*)
78+
7579
lazy val plugin = Project("scalac-scoverage-plugin", file("scalac-scoverage-plugin"))
7680
.settings(name := "scalac-scoverage-plugin")
7781
.settings(appSettings: _*)
7882
.settings(libraryDependencies ++= Seq(
79-
"org.slf4j" % "slf4j-api" % Slf4jVersion,
8083
"commons-io" % "commons-io" % "2.4",
8184
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
8285
"org.scala-lang" % "scala-compiler" % scalaVersion.value,

0 commit comments

Comments
 (0)