/* * Sonar Groovy Plugin * Copyright (C) 2010 SonarSource * dev@sonar.codehaus.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02 */ package org.sonar.plugins.groovy.cobertura; import org.apache.commons.lang.StringUtils; import org.sonar.api.CoreProperties; import org.sonar.api.batch.maven.MavenPlugin; import org.sonar.api.batch.maven.MavenPluginHandler; import org.sonar.api.batch.maven.MavenSurefireUtils; import org.sonar.api.resources.Project; import org.sonar.plugins.cobertura.api.CoberturaUtils; /** * TODO copied from sonar-cobertura-plugin with changes */ public class CoberturaMavenPluginHandler implements MavenPluginHandler { public String getGroupId() { return CoberturaUtils.COBERTURA_GROUP_ID; } public String getArtifactId() { return CoberturaUtils.COBERTURA_ARTIFACT_ID; } public String getVersion() { return "2.5"; } public boolean isFixedVersion() { return false; } public String[] getGoals() { return new String[] { "cobertura" }; } public void configure(Project project, MavenPlugin coberturaPlugin) { configureCobertura(project, coberturaPlugin); MavenSurefireUtils.configure(project); } private void configureCobertura(Project project, MavenPlugin coberturaPlugin) { coberturaPlugin.setParameter("formats/format", "xml"); for (String pattern : project.getExclusionPatterns()) { if (pattern.endsWith(".groovy")) { pattern = StringUtils.substringBeforeLast(pattern, ".") + ".class"; } else if (StringUtils.substringAfterLast(pattern, "/").indexOf(".") < 0) { pattern = pattern + ".class"; } coberturaPlugin.addParameter("instrumentation/excludes/exclude", pattern); } coberturaPlugin.setParameter("maxmem", project.getConfiguration().getString(CoreProperties.COBERTURA_MAXMEM_PROPERTY, CoreProperties.COBERTURA_MAXMEM_DEFAULT_VALUE)); } }