Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for EventSpyDispatcher (0.13 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                ProjectArtifactFactory artifactFactory,
                EventSpyDispatcher eventSpyDispatcher,
                ProjectArtifactsCache projectArtifactsCache,
                MessageBuilderFactory messageBuilderFactory) {
            this.dependenciesResolver = dependenciesResolver;
            this.artifactFactory = artifactFactory;
            this.eventSpyDispatcher = eventSpyDispatcher;
            this.projectArtifactsCache = projectArtifactsCache;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

     */
    @PlexusTest
    public class DefaultRepositorySystemSessionFactoryTest {
        @Inject
        protected MavenRepositorySystem mavenRepositorySystem;
    
        @Inject
        protected EventSpyDispatcher eventSpyDispatcher;
    
        @Inject
        protected org.eclipse.aether.RepositorySystem aetherRepositorySystem;
    
        @Inject
        protected RuntimeInformation information;
    
        @Inject
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        }
    
        @Override
        public MavenExecutionRequest setEventSpyDispatcher(EventSpyDispatcher eventSpyDispatcher) {
            this.eventSpyDispatcher = eventSpyDispatcher;
            return this;
        }
    
        @Override
        public EventSpyDispatcher getEventSpyDispatcher() {
            return eventSpyDispatcher;
        }
    
        @Override
        public Map<String, Object> getData() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                RepositorySystem repoSystem,
                EventSpyDispatcher eventSpyDispatcher,
                RuntimeInformation runtimeInformation,
                TypeRegistry typeRegistry,
                VersionScheme versionScheme,
                Map<String, RepositorySystemSessionExtender> sessionExtenders) {
            this.repoSystem = repoSystem;
            this.eventSpyDispatcher = eventSpyDispatcher;
            this.runtimeInformation = runtimeInformation;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 17 05:56:35 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * @since 4.0.0
         */
        Path getRootDirectory();
    
        /**
         * @since 3.3.0
         */
        MavenExecutionRequest setEventSpyDispatcher(EventSpyDispatcher eventSpyDispatcher);
    
        /**
         * @since 3.3.0
         */
        EventSpyDispatcher getEventSpyDispatcher();
    
        /**
         * @since 3.3.0
         */
        Map<String, Object> getData();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

            context.eventSpyDispatcher.onEvent(request);
    
            MavenExecutionResult result;
            try {
                result = context.maven.execute(request);
                context.eventSpyDispatcher.onEvent(result);
            } finally {
                context.eventSpyDispatcher.close();
            }
    
            if (result.hasExceptions()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            }
            context.protoSession = protoSession;
        }
    
        protected void lookup(C context) throws Exception {
            if (context.eventSpyDispatcher == null) {
                context.eventSpyDispatcher = context.lookup.lookup(EventSpyDispatcher.class);
            }
        }
    
        protected void init(C context) throws Exception {
            Map<String, Object> data = new HashMap<>();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        }
    
        /**
         * Verifies MNG-6558
         */
        @Test
        void testToolchainsBuildingEvents() throws Exception {
            final EventSpyDispatcher eventSpyDispatcherMock = mock(EventSpyDispatcher.class);
            MavenCli customizedMavenCli = new MavenCli() {
                @Override
                protected void customizeContainer(PlexusContainer container) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java

                    result.containerCapsule = shellContext.containerCapsule;
                    result.lookup = shellContext.lookup;
                    result.eventSpyDispatcher = shellContext.eventSpyDispatcher;
                };
            }
    
            @Override
            public void close() throws Exception {
                shellMavenInvoker.close();
                shellEncryptInvoker.close();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top