Advertisement
Guest User

Untitled

a guest
Apr 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. plugins {
  2. id "org.scoverage" version "2.1.0"
  3. id "com.github.maiflai.scalatest" version "0.21"
  4. }
  5. apply plugin: 'java'
  6. apply plugin: 'scala'
  7. apply plugin: 'org.scoverage'
  8. apply plugin: 'com.github.maiflai.scalatest'
  9.  
  10. repositories {
  11. mavenCentral()
  12. }
  13.  
  14. dependencies {
  15. compile 'org.scala-lang:scala-library:2.12.2'
  16. testCompile 'org.scalatest:scalatest_2.12:3.0.1'
  17. testCompile 'org.scalamock:scalamock-scalatest-support_2.12:3.5.0'
  18. testRuntime 'org.pegdown:pegdown:1.4.2'
  19. scoverage 'org.scoverage:scalac-scoverage-plugin_2.12:1.3.1', 'org.scoverage:scalac-scoverage-runtime_2.12:1.3.1'
  20. }
  21.  
  22. // ./gradlew clean reportScoverage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement