Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ProjectBuilderException (0.14 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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);
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 25 21:57:56 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  2. 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.
         *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Nov 16 20:36:20 GMT 2024
    - 2.9K bytes
    - Click Count (0)
  3. 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 {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Sep 13 09:44:11 GMT 2025
    - 8.8K bytes
    - Click Count (0)
Back to Top