Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for artifactInstalled (2.57 sec)

  1. maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyRepositoryListener.java

            dispatcher.onEvent(event);
            delegate.artifactDescriptorMissing(event);
        }
    
        @Override
        public void artifactInstalled(RepositoryEvent event) {
            dispatcher.onEvent(event);
            delegate.artifactInstalled(event);
        }
    
        @Override
        public void artifactInstalling(RepositoryEvent event) {
            dispatcher.onEvent(event);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

    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)
  3. 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
         * @throws IllegalArgumentException in case {@code request} is {@code null}
    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)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactInstaller.java

    package org.apache.maven.internal.impl;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.services.ArtifactInstaller;
    import org.apache.maven.api.services.ArtifactInstallerException;
    import org.apache.maven.api.services.ArtifactInstallerRequest;
    import org.eclipse.aether.RepositorySystem;
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Dec 07 20:05:02 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/installer/ArtifactInstallerTest.java

    import static org.mockito.Mockito.mock;
    
    /**
     */
    @Deprecated
    class ArtifactInstallerTest extends AbstractArtifactComponentTestCase {
        @Inject
        private ArtifactInstaller artifactInstaller;
    
        @Inject
        private SessionScope sessionScope;
    
        protected String component() {
            return "installer";
        }
    
        @Test
        void testArtifactInstallation() throws Exception {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactInstaller.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.di.Inject;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.services.ArtifactInstaller;
    import org.apache.maven.api.services.ArtifactInstallerException;
    import org.apache.maven.api.services.ArtifactInstallerRequest;
    import org.eclipse.aether.RepositorySystem;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}.
         *
         * @param artifacts the artifacts to install
         * @throws org.apache.maven.api.services.ArtifactInstallerException if the artifacts installation failed
         *
         * @see org.apache.maven.api.services.ArtifactInstaller#install(Session, Collection)
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        }
    
        /**
         * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}
         *
         * @throws ArtifactInstallerException if the artifacts installation failed
         * @see ArtifactInstaller#install(Session, Collection)
         */
        @Override
        public void installArtifacts(Collection<Artifact> artifacts) {
            getService(ArtifactInstaller.class).install(this, artifacts);
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        }
    
        /**
         * Shortcut for {@code getService(ArtifactInstaller.class).install(...)}
         *
         * @throws ArtifactInstallerException if the artifacts installation failed
         * @see ArtifactInstaller#install(Session, Collection)
         */
        @Override
        public void installArtifacts(Collection<Artifact> artifacts) {
            getService(ArtifactInstaller.class).install(this, artifacts);
        }
    
        /**
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java

    import org.eclipse.aether.util.artifact.SubArtifact;
    
    /**
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultArtifactInstaller extends AbstractLogEnabled implements ArtifactInstaller {
    
        @Inject
        private RepositorySystem repoSystem;
    
        @Inject
        private LegacySupport legacySupport;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5K bytes
    - Viewed (0)
Back to top