Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for afterSessionStart (0.13 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java

            chainedWorkspaceReader.setReaders(workspaceReaders);
        }
    
        private void afterSessionStart(MavenSession session) throws MavenExecutionException {
            callListeners(session, AbstractMavenLifecycleParticipant::afterSessionStart);
        }
    
        private void afterProjectsRead(MavenSession session) throws MavenExecutionException {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Dec 29 10:43:38 GMT 2025
    - 28.8K bytes
    - Click Count (1)
  2. impl/maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

         *
         * @param session the Maven session
         * @throws MavenExecutionException in case of issue
         */
        // TODO This is too early for build extensions, so maybe just remove it?
        public void afterSessionStart(MavenSession session) throws MavenExecutionException {
            // do nothing
        }
    
        /**
         * Invoked after all projects were built.
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.9K bytes
    - Click Count (0)
Back to Top