Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for groupBy (1.28 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            String groupId = null;
            final String modelId = result.getModelIds().get(modelIndex);
    
            if (!modelId.isEmpty()) {
                final Model model = result.getRawModel(modelId).orElseThrow();
                groupId = model.getGroupId() != null ? model.getGroupId() : inheritedGroupId(result, modelIndex + 1);
            }
    
            return groupId;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
Back to top