mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 12:30:07 +00:00

* Add playCoverage task to run code coverage using JaCoco for backend and web. * Add jacocoTestReport task to run code coverage for testNG-based tests in wherehows-common & metadata-etl.
12 lines
381 B
Scala
12 lines
381 B
Scala
// Comment to get more information during initialization
|
|
logLevel := Level.Warn
|
|
|
|
// The Typesafe repository
|
|
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
|
|
|
|
// Use the Play sbt plugin for Play projects
|
|
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.8")
|
|
|
|
// Use JaCoCo for code coverage
|
|
addSbtPlugin("de.johoop" % "jacoco4sbt" % "2.1.6")
|