SLING-1803 - adding emma report. runs with -P emma

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1023522 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index 15d282d..599528d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -60,6 +60,14 @@
                             <goal>manifest</goal>
                         </goals>
                     </execution>
+                    <execution>
+                        <id>emma-bundle</id>
+                        <configuration>
+                            <supportedProjectTypes>
+                                <supportedProjectType>bundle</supportedProjectType>
+                            </supportedProjectTypes>
+                        </configuration>
+                    </execution>
                 </executions>
                 <configuration>
                     <instructions>
@@ -92,6 +100,16 @@
                     </webResources>
                 </configuration>
             </plugin>
+
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>emma-maven-plugin</artifactId>
+                <configuration>
+                    <filters>
+                        <filter>-*</filter>
+                    </filters>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <dependencies>