Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for attachToThread (0.04 sec)

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

                    return;
                }
    
                transformerManager.injectTransformedArtifacts(session.getRepositorySession(), currentProject);
    
                BuilderCommon.attachToThread(currentProject);
    
                projectExecutionListener.beforeProjectExecution(new ProjectExecutionEvent(session, currentProject));
    
                eventCatapult.fire(ExecutionEvent.Type.ProjectStarted, session, null);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java

                    ClassLoader tccl = Thread.currentThread().getContextClassLoader();
                    MavenProject currentProject = session.getCurrentProject();
                    try {
                        BuilderCommon.attachToThread(project); // Not totally sure if this is needed for anything
                        session.setCurrentProject(project);
                        projectBuilds.add(new ProjectSegment(project, taskSegment, session));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java

            this.mojoExecution = mojoExecution;
        }
    
        public static List<ExecutionPlanItem> createExecutionPlanItems(
                MavenProject mavenProject, List<MojoExecution> executions) {
            BuilderCommon.attachToThread(mavenProject);
    
            List<ExecutionPlanItem> result = new ArrayList<>();
            for (MojoExecution mojoExecution : executions) {
                result.add(new ExecutionPlanItem(mojoExecution));
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top