Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for interfaces (0.35 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstaller.java

    /**
     * Installs {@link Artifact}s to the local repository.
     *
     * @since 4.0.0
     * @see Session#withLocalRepository(org.apache.maven.api.LocalRepository)
     */
    @Experimental
    public interface ArtifactInstaller extends Service {
        /**
         * @param request {@link ArtifactInstallerRequest}
         * @throws ArtifactInstallerException in case of an error
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Nov 17 15:52:15 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

    package org.apache.maven.artifact.installer;
    
    import java.io.File;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     */
    @Deprecated
    public interface ArtifactInstaller {
        String ROLE = ArtifactInstaller.class.getName();
    
        /**
         * Install an artifact from a particular directory. The artifact handler is used to determine
         * the filename of the source file.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top