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

org.meridor.stecker.interfaces.DependencyProblem Maven / Gradle / Ivy

package org.meridor.stecker.interfaces;

import java.util.List;

/**
 * Provides information about dependency resolution problems
 */
public interface DependencyProblem {

    /**
     * Returns a list of dependencies that are required by a plugin but are not present for some reason
     *
     * @return list of missing dependencies
     */
    List getMissingDependencies();

    /**
     * Returns a list of dependencies that conflict with one of plugins but are present for some reason
     *
     * @return list of conflicting plugins
     */
    List getConflictingDependencies();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy