org.octopusden.octopus.escrow.resolvers.IModuleByArtifactResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of component-resolver-api Show documentation
Show all versions of component-resolver-api Show documentation
Octopus module: component-resolver-api
The newest version!
package org.octopusden.octopus.escrow.resolvers;
import org.octopusden.octopus.releng.dto.ComponentVersion;
import org.apache.maven.artifact.Artifact;
public interface IModuleByArtifactResolver {
ComponentVersion resolveComponentByArtifact(Artifact mavenArtifact);
void reloadComponentsRegistry();
}