- Sort Score
- Num 10 results
- Language All
Results 11 - 15 of 15 for getProjectId (0.04 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/ProjectBuildFailureException.java
this.projectId = projectId; } public MojoFailureException getMojoFailureException() { return (MojoFailureException) getCause(); } public String getProjectId() { return projectId; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/VersionNotFoundException.java
return "Dependency: " + ArtifactUtils.versionlessKey(dependency.getGroupId(), dependency.getArtifactId()); } public Dependency getDependency() { return dependency; } public String getProjectId() { return projectId; } public File getPomFile() { return pomFile; } public InvalidVersionSpecificationException getCauseException() { return cause; }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DuplicateProjectException.java
super(message); this.projectId = projectId; this.existingProjectFile = existingProjectFile; this.conflictingProjectFile = conflictingProjectFile; } public String getProjectId() { return projectId; } public File getExistingProjectFile() { return existingProjectFile; } public File getConflictingProjectFile() {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.2K bytes - Click Count (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(); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 2.6K bytes - Click Count (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 {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.2K bytes - Click Count (0)