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

com.buschmais.jqassistant.scm.maven.configuration.Module Maven / Gradle / Ivy

Go to download

jQAssistant plugin for Apache Maven to integrate jQAssistant into a Maven based project.

There is a newer version: 2.5.0
Show newest version
package com.buschmais.jqassistant.scm.maven.configuration;

import com.buschmais.jqassistant.core.shared.annotation.Description;

import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithDefault;

/**
 * Per-Module configuration, applies to module-based goals.
 */
@ConfigMapping(prefix = "jqassistant.maven.module")
public interface Module {

    String SKIP = "skip";

    @WithDefault("false")
    @Description("Skip execution of jQAssistant goals for a module.")
    boolean skip();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy