com.buschmais.jqassistant.scm.maven.configuration.source.SettingsConfigSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqassistant-maven-plugin Show documentation
Show all versions of jqassistant-maven-plugin Show documentation
jQAssistant plugin for Apache Maven to integrate jQAssistant
into a Maven based project.
The newest version!
package com.buschmais.jqassistant.scm.maven.configuration.source;
import org.apache.maven.settings.Settings;
import static java.util.Arrays.asList;
/**
* Config source for Maven {@link Settings}.
*/
public class SettingsConfigSource extends AbstractObjectValueConfigSource {
public SettingsConfigSource(Settings settings) {
super("Maven Settings", settings, "settings", asList("settings.localRepository"));
}
}