Package org.apache.camel.tooling.maven
Interface RemoteArtifactDownloadListener
public interface RemoteArtifactDownloadListener
-
Method Summary
Modifier and TypeMethodDescriptionvoidartifactDownloaded(String groupId, String artifactId, String version, String repoId, String repoUrl, long elapsed) Event when an artifact was downloaded from a remote maven repository (not local).voidartifactDownloading(String groupId, String artifactId, String version, String repoId, String repoUrl) Event when an artifact downloading is started from a remote maven repository (not local).
-
Method Details
-
artifactDownloading
void artifactDownloading(String groupId, String artifactId, String version, String repoId, String repoUrl) Event when an artifact downloading is started from a remote maven repository (not local). -
artifactDownloaded
void artifactDownloaded(String groupId, String artifactId, String version, String repoId, String repoUrl, long elapsed) Event when an artifact was downloaded from a remote maven repository (not local).
-