Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isV4Api (0.03 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/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            mojoExecution.setConfiguration(finalConfiguration);
        }
    
        private XmlNode getMojoConfiguration(MojoDescriptor mojoDescriptor) {
            if (mojoDescriptor.isV4Api()) {
                return MojoDescriptorCreator.convert(mojoDescriptor.getMojoDescriptorV4());
            } else {
                return MojoDescriptorCreator.convert(mojoDescriptor).getDom();
            }
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 26.7K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                            .allSteps()
                            .flatMap(step -> step.mojos.values().stream().flatMap(map -> map.values().stream()))
                            .filter(execution -> !execution.getMojoDescriptor().isV4Api())
                            .collect(Collectors.toSet());
                    if (!unsafeExecutions.isEmpty()) {
                        for (String s : MultilineMessageHelper.format("""
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
Back to Top