Integrating cobertura maven with Cruise control.
Integrating cobertura maven with Cruise control. After integrating cobertura with maven.I started integrating it with cruise control for a reason that the user should be able to see the cobertura report on a dashboard. We need to tell the cruise control to locate the reports. Step-1 Create a jsp file and name it as "cobertura-coverage.jsp" in-cruisecontrol-bin-2.8.4\webapps\cruisecontrol Step-2 Add the below content to ur "cobertura-coverage.jsp" <%@ taglib uri="/WEB-INF/cruisecontrol-jsp11.tld" prefix="cruisecontrol"%> <p> <cruisecontrol:artifactsLink> <iframe name="CoberturaFrame" id="cloverFrame" style="width:95%; height:700;" marginheight="10" frameborder="0" marginwidth="10" src="<%= artifacts_url %>/cobertura/index.html" width="600"></iframe> </cruisecontrol:artifactsLink> </p> Step-3 ope...