Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getValue (0.4 sec)

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

            for (Map.Entry<String, Map<Integer, List<MojoExecution>>> entry : mappings.entrySet()) {
                List<MojoExecution> mojoExecutions = new ArrayList<>();
    
                for (List<MojoExecution> executions : entry.getValue().values()) {
                    mojoExecutions.addAll(executions);
                }
    
                lifecycleMappings.put(entry.getKey(), mojoExecutions);
            }
    
            return lifecycleMappings;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top