Set up code coverage analysis
diff --git a/pom.xml b/pom.xml
index 4eaff95..14bfaef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -225,6 +225,36 @@
                     </excludes>
                 </configuration> 
             </plugin>
+            <plugin>
+                <groupId>org.jacoco</groupId>
+                <artifactId>jacoco-maven-plugin</artifactId>
+                <version>0.8.7</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>prepare-agent</goal>
+                        </goals>
+                        <configuration>
+                            <skip>${skipJacoco}</skip>
+                            <includes>
+                                <include>org.apache.neethi.*</include>
+                            </includes>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>com.github.veithen.maven</groupId>
+                <artifactId>jacoco-report-maven-plugin</artifactId>
+                <version>0.3.1</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
 	<pluginManagement>
 	  <plugins>