Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ModelParserException (0.1 sec)

  1. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

         * @param options possible parsing options, may be {@code null}
         * @return the parsed {@link Model}, never {@code null}
         * @throws ModelParserException if the model cannot be parsed
         */
        @Nonnull
        Model parse(@Nonnull Source source, @Nullable Map<String, ?> options) throws ModelParserException;
    
        /**
         * Locate and parse the model in the specified directory.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Sep 10 17:18:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java

    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Optional;
    
    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.spi.ModelParser;
    import org.apache.maven.api.spi.ModelParserException;
    import org.apache.maven.model.io.ModelParseException;
    import org.apache.maven.model.io.ModelReader;
    import org.apache.maven.model.locator.ModelLocator;
    import org.eclipse.sisu.Typed;
    
    /**
     *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top