- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for getProjectId (0.7 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java
public String getPomLocation() { if (getPomFile() != null) { return getPomFile().getAbsolutePath(); } else { return "null"; } } public String getProjectId() { return projectId; } public List<ProjectBuildingResult> getResults() { return results; }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jul 26 19:15:57 UTC 2025 - 6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java
result.getProjectId()); 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());Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Sep 30 08:09:09 UTC 2025 - 4.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 10.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingResult.java
* is thrown so this information is merely meant to assist the user. * * @return The identifier of the project or an empty string if not known, never {@code null}. */ String getProjectId(); /** * Gets the POM file from which the project was built. * * @return The POM file or {@code null} if unknown. */ File getPomFile(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingResult.java
this.project = null; this.problems = problems != null ? problems : Collections.emptyList(); this.dependencyResolutionResult = null; } @Override public String getProjectId() { return projectId; } @Override public File getPomFile() { return pomFile; } @Override public MavenProject getProject() { return project;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/SmartProjectComparator.java
return Comparator.comparingLong((ToLongFunction<MavenProject>) this::getProjectWeight) .reversed() // Higher weights first .thenComparing(this::getProjectId); // Secondary sort for deterministic ordering } private long calculateWeight(MavenProject project) { // Calculate maximum weight of downstream dependencies
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 12:03:40 UTC 2025 - 4.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java
return request; } @Nonnull @Override public String getProjectId() { return res.getProjectId(); } @Nonnull @Override public Optional<Path> getPomFile() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Sep 13 09:44:11 UTC 2025 - 8.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java
* is thrown so this information is merely meant to assist the user. * * @return the identifier of the project or an empty string if not known, never {@code null} */ @Nonnull String getProjectId(); /** * Gets the POM file from which the project was built. * * @return the optional POM file */ @Nonnull Optional<Path> getPomFile(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
} private ProjectBuildingException transformError(ProjectBuildingException e) { if (e.getCause() instanceof ModelBuildingException) { return new InvalidProjectModelException(e.getProjectId(), e.getMessage(), e.getPomFile()); } return e; } @Override public MavenProject build(File pom, ProjectBuilderConfiguration configuration) throws ProjectBuildingException {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.2K bytes - Viewed (0)