JUDDI-952 adding jacoco plugin for code coverage reports.
diff --git a/juddi-core/pom.xml b/juddi-core/pom.xml
index af2c0d3..cfa10ea 100644
--- a/juddi-core/pom.xml
+++ b/juddi-core/pom.xml
@@ -23,7 +23,6 @@
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
-                <version>1.4.0</version>
                 <configuration>
                     <instructions>
                         <Export-Package>org.apache.juddi, org.apache.juddi.api,
diff --git a/pom.xml b/pom.xml
index 1ed9af1..06b5a18 100644
--- a/pom.xml
+++ b/pom.xml
@@ -554,7 +554,47 @@
                             </execution>
                         </executions>
                     </plugin>
-                </plugins>
+		    <plugin>
+			    <groupId>org.jacoco</groupId>
+			    <artifactId>jacoco-maven-plugin</artifactId>
+			    <version>0.7.5.201505241946</version>
+			    <executions>
+				    <execution>
+					    <id>jacoco-prepare-agent</id>
+					    <goals>
+						    <goal>prepare-agent</goal>
+					    </goals>
+				    </execution>
+				    <execution>
+					    <id>jacoco-prepare-agent-integration</id>
+					    <goals>
+						    <goal>prepare-agent-integration</goal>
+					    </goals>
+				    </execution>
+				    <execution>
+					    <id>jacoco-report</id>
+					    <goals>
+						    <goal>report</goal>
+					    </goals>
+				    </execution>
+				    <execution>
+					    <id>jacoco-integration</id>
+					    <goals>
+						    <goal>report-integration</goal>
+					    </goals>
+				    </execution>
+				    <execution>
+					    <id>jacoco-check</id>
+					    <goals>
+						    <goal>check</goal>
+					    </goals>
+					    <configuration>
+						    <rules />
+					    </configuration>
+				    </execution>
+			    </executions>
+		    </plugin>
+		</plugins>
             </build>
         </profile>
     </profiles>