Skip sonar build in eclipse

Let developers in eclipse trigger sonarlint manually rather than
automatically as part of m2e, as the latter really slows things down.

Issue-ID: POLICY-3126
Change-Id: I6fceafc0cee85312f47b6030f47d088868912ff1
Signed-off-by: Jim Hahn <jrh3@att.com>
diff --git a/integration/pom.xml b/integration/pom.xml
index 3ef1cbb..2c6e9fd 100644
--- a/integration/pom.xml
+++ b/integration/pom.xml
@@ -572,6 +572,19 @@
                                                 <ignore />
                                             </action>
                                         </pluginExecution>
+                                        <pluginExecution>
+                                            <pluginExecutionFilter>
+                                                <groupId>org.jacoco</groupId>
+                                                <artifactId>jacoco-maven-plugin</artifactId>
+                                                <versionRange>[0.7.1.201405082137,)</versionRange>
+                                                <goals>
+                                                    <goal>prepare-agent</goal>
+                                                </goals>
+                                            </pluginExecutionFilter>
+                                            <action>
+                                                <ignore />
+                                            </action>
+                                        </pluginExecution>
                                     </pluginExecutions>
                                 </lifecycleMappingMetadata>
                             </configuration>