use of org.jfrog.build.extractor.maven.Maven3BuildInfoLogger in project build-info by JFrogDev.
the class ResolutionHelper method init.
public void init(Properties allMavenProps) {
if (internalConfiguration != null) {
return;
}
Maven3BuildInfoLogger log = new Maven3BuildInfoLogger(logger);
Properties allProps = BuildInfoExtractorUtils.mergePropertiesWithSystemAndPropertyFile(allMavenProps, log);
internalConfiguration = new ArtifactoryClientConfiguration(log);
internalConfiguration.fillFromProperties(allProps);
initialized = true;
}
Aggregations