org.codehaus.mojo.resolver.bod.binary.BinaryDependencyManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build-on-demand-maven-plugin Show documentation
Show all versions of build-on-demand-maven-plugin Show documentation
Orchestrates resolving sources, etc for dependencies, and invoking builds (up to 'install' IIRC) on deps, binds early in the lifecycle.
package org.codehaus.mojo.resolver.bod.binary;
import java.util.List;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.codehaus.mojo.resolver.bod.BuildOnDemandResolutionException;
public interface BinaryDependencyManager
{
void findDependenciesWithMissingBinaries( List dependencyProjects, ArtifactRepository localRepository )
throws BuildOnDemandResolutionException;
}