Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for formatLocation (0.05 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PrecedenceCoreExtensionSelector.java

                        conflicts.add(String.format(
                                "Conflicting extension %s: %s vs %s",
                                key,
                                formatLocation(conflict.getLocation("")),
                                formatLocation(coreExtension.getLocation(""))));
                    }
                }
            }
            if (!conflicts.isEmpty()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 15:32:43 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java

                    if (request.isShowErrors()) { // this means -e or -X (as -X enables -e as well)
                        for (ModelProblem problem : result.getProblems()) {
                            String loc = ModelProblemUtils.formatLocation(problem, result.getProjectId());
                            LOGGER.warn("{}{}", problem.getMessage(), ((loc != null && !loc.isEmpty()) ? " @ " + loc : ""));
                        }
                    }
                }
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Sep 30 08:09:09 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top