From 5f377b7b69fdf787b65ac4a22631fc1a03c9ed2a Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Tue, 20 May 2014 09:40:27 +0200 Subject: [PATCH] Exclude classes and packages with ScoverageCompile `scoverageTest` is wrong -> it should be `ScoverageTest` But with `ScoverageTest` it does not work. Using `ScoverageCompile` enable the exclusions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d48da788..e09ee534 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ regular expressions. Example: ```scala -ScoverageKeys.excludedPackages in scoverageTest := ";Reverse.*;.*AuthService.*;models\.data\..*" +ScoverageKeys.excludedPackages in ScoverageCompile := ";Reverse.*;.*AuthService.*;models\.data\..*" ``` The regular expressions are matched against the fully qualified class name, and must match the entire string to take effect.