Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for artifactDeployed (0.45 sec)

  1. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleRepositoryListener.java

            this(null);
        }
    
        public ConsoleRepositoryListener(PrintStream out) {
            this.out = (out != null) ? out : System.out;
        }
    
        public void artifactDeployed(RepositoryEvent event) {
            println("artifactDeployed", event.getArtifact() + " to " + event.getRepository());
        }
    
        public void artifactDeploying(RepositoryEvent event) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyRepositoryListener.java

            this.dispatcher = dispatcher;
            this.delegate = delegate;
        }
    
        @Override
        public void artifactDeployed(RepositoryEvent event) {
            dispatcher.onEvent(event);
            delegate.artifactDeployed(event);
        }
    
        @Override
        public void artifactDeploying(RepositoryEvent event) {
            dispatcher.onEvent(event);
            delegate.artifactDeploying(event);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java

    import java.io.File;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     * ArtifactDeployer
     */
    @Deprecated
    public interface ArtifactDeployer {
        String ROLE = ArtifactDeployer.class.getName();
    
        /**
         * Deploy an artifact from a particular directory. The artifact handler is used to determine the
         * filename of the source file.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployer.java

    /**
     * Deploys {@link Artifact}s to a {@link RemoteRepository}.
     *
     * @since 4.0.0
     * @see Session#deployArtifact(RemoteRepository, Artifact...)
     */
    @Experimental
    public interface ArtifactDeployer extends Service {
    
        /**
         * @param request {@link ArtifactDeployerRequest}
         * @throws ArtifactDeployerException if the deployment failed
         */
        void deploy(@Nonnull ArtifactDeployerRequest request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

    import org.eclipse.aether.deployment.DeploymentException;
    
    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    /**
     * Implementation of {@link ArtifactDeployer} service.
     */
    @Named
    @Singleton
    public class DefaultArtifactDeployer implements ArtifactDeployer {
    
        @Override
        public void deploy(@Nonnull ArtifactDeployerRequest request) {
            nonNull(request, "request");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/artifact/deployer/ArtifactDeployerTest.java

    import static org.mockito.Mockito.mock;
    
    /**
     */
    @Deprecated
    class ArtifactDeployerTest extends AbstractArtifactComponentTestCase {
        @Inject
        private ArtifactDeployer artifactDeployer;
    
        @Inject
        private SessionScope sessionScope;
    
        protected String component() {
            return "deployer";
        }
    
        @Test
        void testArtifactInstallation() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/VersionsMetadataGenerator.java

            timestamp = (Date) ConfigUtils.getObject(session, new Date(), "maven.startTime");
    
            /*
             * NOTE: This should be considered a quirk to support interop with Maven's legacy ArtifactDeployer which
             * processes one artifact at a time and hence cannot associate the artifacts from the same project to use the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 19:50:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadataGenerator.java

            timestamp = (Date) ConfigUtils.getObject(session, new Date(), "maven.startTime");
    
            /*
             * NOTE: This should be considered a quirk to support interop with Maven's legacy ArtifactDeployer which
             * processes one artifact at a time and hence cannot associate the artifacts from the same project to use the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        /**
         * Shortcut for <code>getService(ArtifactDeployer.class).deploy(...)</code>
         *
         * @throws ArtifactDeployerException if the artifacts deployment failed
         * @see ArtifactDeployer#deploy(Session, RemoteRepository, Collection)
         */
        @Override
        public void deployArtifact(RemoteRepository repository, Artifact... artifacts) {
            getService(ArtifactDeployer.class).deploy(this, repository, Arrays.asList(artifacts));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RemoteSnapshotMetadataGenerator.java

            } else {
                this.buildNumber = null;
            }
    
            snapshots = new LinkedHashMap<>();
    
            /*
             * NOTE: This should be considered a quirk to support interop with Maven's legacy ArtifactDeployer which
             * processes one artifact at a time and hence cannot associate the artifacts from the same project to use the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 16 11:43:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top