Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for on_event (0.04 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

            }
            settingsRequest.setUserProperties(props);
    
            if (request.getEventSpyDispatcher() != null) {
                request.getEventSpyDispatcher().onEvent(settingsRequest);
            }
    
            LOGGER.debug(
                    "Reading installation settings from '{}'",
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 19 18:49:57 UTC 2025
    - 12K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                        new DefaultDependencyResolutionRequest(project, session.getRepositorySession());
                request.setResolutionFilter(resolutionFilter);
    
                eventSpyDispatcher.onEvent(request);
    
                result = dependenciesResolver.resolve(request);
            } catch (DependencyResolutionException e) {
                result = e.getResult();
    
                /*
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

        protected int doExecute(MavenContext context, MavenExecutionRequest request) throws Exception {
            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)
  4. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            orderedEventSpyDispatcherMock
                    .verify(eventSpyDispatcherMock, times(1))
                    .onEvent(any(ToolchainsBuildingRequest.class));
            orderedEventSpyDispatcherMock
                    .verify(eventSpyDispatcherMock, times(1))
                    .onEvent(any(ToolchainsBuildingResult.class));
        }
    
        @Test
        void resumeFromSelectorIsSuggestedWithoutGroupId() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            VERBOSE // at end, list of plugin GAVs along with detailed report of ANY validation issues
        }
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        @Override
        public void onEvent(Object event) {
            if (event instanceof ExecutionEvent executionEvent) {
                if (executionEvent.getType() == ExecutionEvent.Type.SessionStarted) {
                    RepositorySystemSession repositorySystemSession =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:32 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

            ReactorReaderSpy(Lookup lookup) {
                this.lookup = lookup;
            }
    
            @Override
            public void init(Context context) throws Exception {}
    
            @Override
            public void onEvent(Object event) throws Exception {
                if (event instanceof ExecutionEvent executionEvent) {
                    ReactorReader reactorReader = lookup.lookup(ReactorReader.class);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:20:38 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                    .build();
    
            customizeSettingsRequest(context, settingsRequest);
            if (context.eventSpyDispatcher != null) {
                context.eventSpyDispatcher.onEvent(settingsRequest);
            }
    
            context.logger.debug("Reading installation settings from '" + installationSettingsFile + "'");
            context.logger.debug("Reading project settings from '" + projectSettingsFile + "'");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
Back to top