Merge pull request #14 from apache/feature/remove-emma-maven-plugin-profiles

SLING-10054 remove emma-maven-plugin and related profiles
diff --git a/sling-parent/pom.xml b/sling-parent/pom.xml
index a17c96a..3a654a7 100644
--- a/sling-parent/pom.xml
+++ b/sling-parent/pom.xml
@@ -361,11 +361,6 @@
                     <version>3.2.0</version>
                 </plugin>
                 <plugin>
-                    <groupId>org.codehaus.mojo</groupId>
-                    <artifactId>emma-maven-plugin</artifactId>
-                    <version>1.0-alpha-3</version>
-                </plugin>
-                <plugin>
                     <groupId>org.jacoco</groupId>
                     <artifactId>jacoco-maven-plugin</artifactId>
                     <version>0.8.6</version>
@@ -389,59 +384,6 @@
 
     <profiles>
         <profile>
-            <id>emma</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>emma-maven-plugin</artifactId>
-                        <inherited>true</inherited>
-                        <executions>
-                            <execution>
-                                <phase>prepare-package</phase>
-                                <goals>
-                                    <goal>instrument</goal>
-                                </goals>
-                                <configuration>
-                                    <metadataFile>${user.dir}/coverage.em</metadataFile>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-        <profile>
-            <id>emma-report</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.codehaus.groovy.maven</groupId>
-                        <artifactId>gmaven-plugin</artifactId>
-                        <executions>
-                            <!-- store the project's source dir in a comma-delimited list for the emma report. -->
-                            <execution>
-                                <id>save-bundle-metadata</id>
-                                <goals>
-                                    <goal>execute</goal>
-                                </goals>
-                                <phase>validate</phase>
-                                <configuration>
-                                    <source>
-                                        if (!session.executionProperties.sourceDirs) {
-                                            session.executionProperties.sourceDirs = "${basedir}/src/main/java"
-                                        } else {
-                                            session.executionProperties.sourceDirs += ",${basedir}/src/main/java"
-                                        }
-                                    </source>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-        <profile>
             <id>jacoco-report</id>
             <build>
                 <plugins>