All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pitest.maven.PitMojo Maven / Gradle / Ivy

There is a newer version: 1.17.3
Show newest version
package org.pitest.maven;

import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.eclipse.aether.RepositorySystem;

import javax.inject.Inject;

/**
 * Goal which runs a coverage mutation report
 */
@Mojo(name = "mutationCoverage", 
      defaultPhase = LifecyclePhase.VERIFY,
      requiresDependencyResolution = ResolutionScope.TEST, 
      threadSafe = true)
public class PitMojo extends AbstractPitMojo {

    @Inject
    public PitMojo(RepositorySystem repositorySystem) {
        super(repositorySystem);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy