
org.apache.maven.plugin.pmd.PmdViolationCheckMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-pmd-plugin Show documentation
Show all versions of maven-pmd-plugin Show documentation
A Maven plugin for the PMD toolkit, that produces a report on both code rule violations and detected copy and paste
fragments,
as well as being able to fail the build based on these metrics.
package org.apache.maven.plugin.pmd;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.pmd.model.PmdErrorDetail;
import org.apache.maven.plugin.pmd.model.PmdFile;
import org.apache.maven.plugin.pmd.model.Violation;
import org.apache.maven.plugin.pmd.model.io.xpp3.PmdXpp3Reader;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.util.IOUtil;
import org.codehaus.plexus.util.StringUtils;
import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;
import java.util.Set;
/**
* Fail the build if there were any PMD violations in the source code.
*
* @version $Id: PmdViolationCheckMojo.java 1718321 2015-12-07 12:08:26Z dennisl $
* @since 2.0
*/
@Mojo( name = "check", defaultPhase = LifecyclePhase.VERIFY, threadSafe = true )
@Execute( goal = "pmd" )
public class PmdViolationCheckMojo
extends AbstractPmdViolationCheckMojo
{
/**
* What priority level to fail the build on. Failures at or above this level will stop the build. Anything below
* will be warnings and will be displayed in the build output if verbose=true. Note: Minimum Priority = 5 Maximum
* Priority = 0
*/
@Parameter( property = "pmd.failurePriority", defaultValue = "5", required = true )
private int failurePriority;
/**
* Skip the PMD checks. Most useful on the command line via "-Dpmd.skip=true".
*/
@Parameter( property = "pmd.skip", defaultValue = "false" )
private boolean skip;
private final Map> excludeFromFailureClasses = new HashMap>();
/**
* {@inheritDoc}
*/
public void execute()
throws MojoExecutionException, MojoFailureException
{
if ( !skip )
{
executeCheck( "pmd.xml", "violation", "PMD violation", failurePriority );
}
}
@Override
protected void loadExcludeFromFailuresData( final String excludeFromFailureFile )
throws MojoExecutionException
{
File file = new File( excludeFromFailureFile );
if ( !file.exists() )
{
return;
}
final Properties props = new Properties();
FileInputStream fileInputStream = null;
try
{
fileInputStream = new FileInputStream( new File( excludeFromFailureFile ) );
props.load( fileInputStream );
}
catch ( final IOException e )
{
throw new MojoExecutionException( "Cannot load properties file " + excludeFromFailureFile, e );
}
finally
{
IOUtil.close( fileInputStream );
}
for ( final Entry
© 2015 - 2025 Weber Informatics LLC | Privacy Policy