- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for ProjectBuilderException (0.09 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderException.java
/** * The Exception class throw by the {@link ProjectBuilder} service. * * @since 4.0.0 */ @Experimental public class ProjectBuilderException extends MavenException { /** * @param message the message to give * @param e the {@link Exception} */ public ProjectBuilderException(String message, Exception e) { super(message, e); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 21:57:56 UTC 2025 - 1.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilder.java
* @return the {@link ProjectBuilderResult} containing the built project and possible errors * @throws ProjectBuilderException if the project cannot be created * @throws IllegalArgumentException if an argument is {@code null} or invalid */ @Nonnull ProjectBuilderResult build(ProjectBuilderRequest request) throws ProjectBuilderException; /** * Creates a {@link org.apache.maven.api.Project} from a POM file. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Nov 16 20:36:20 UTC 2024 - 2.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java
throws ProjectBuilderException, IllegalArgumentException { InternalSession session = InternalSession.from(request.getSession()); return session.request(request, this::doBuild); } protected ProjectBuilderResult doBuild(ProjectBuilderRequest request) throws ProjectBuilderException, IllegalArgumentException {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
/** * Gets the project that was built. * * @return The project that was built or {@code null} if an error occurred and this result accompanies a * {@link ProjectBuilderException}. */ @Nonnull Optional<Project> getProject(); /** * Gets the problems that were encountered during the project building. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.6K bytes - Viewed (0)