You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by js...@apache.org on 2020/11/04 13:40:47 UTC

[sling-org-apache-sling-xss] 02/03: SLING-9876 - Embedded packages should not feature in jacoco-report

This is an automated email from the ASF dual-hosted git repository.

jsedding pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-xss.git

commit 32bb7571375fab021802b91a41c85bae744df6ab
Author: Julian Sedding <js...@apache.org>
AuthorDate: Wed Nov 4 14:39:52 2020 +0100

    SLING-9876 - Embedded packages should not feature in jacoco-report
---
 pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/pom.xml b/pom.xml
index c06f291..566170f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -154,6 +154,15 @@
                     </systemProperties>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.jacoco</groupId>
+                <artifactId>jacoco-maven-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>org/apache/sling/xss/**</include>
+                    </includes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>