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

com.exasol.projectkeeper.sources.analyze.LanguageSpecificSourceAnalyzer Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
package com.exasol.projectkeeper.sources.analyze;

import java.nio.file.Path;
import java.util.List;

import com.exasol.projectkeeper.shared.config.Source;
import com.exasol.projectkeeper.sources.AnalyzedSource;

/**
 * Implement this interface to analyze a certain type of source project, e.g. Maven or Golang.
 */
public interface LanguageSpecificSourceAnalyzer {

    /**
     * Analyze the given source projects located in the common project root directory.
     * 
     * @param projectRootDir the common root directory for the sources
     * @param sources        the sources to analyze
     * @return analyzed sources
     */
    List analyze(Path projectRootDir, List sources);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy