- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ModelParserException (0.63 sec)
-
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java
} public ModelParserException(String message, Throwable cause) { this(message, -1, -1, cause); } public ModelParserException(String message, int lineNumber, int columnNumber, Throwable cause) { super(message, cause); this.lineNumber = lineNumber; this.columnNumber = columnNumber; } public ModelParserException(Throwable cause) { this(null, cause);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Sep 22 07:25:10 UTC 2023 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/di/DiTest.java
import com.google.inject.TypeLiteral; import org.apache.maven.api.model.Model; import org.apache.maven.api.services.Source; import org.apache.maven.api.spi.ModelParser; import org.apache.maven.api.spi.ModelParserException; import org.apache.maven.internal.impl.SisuDiBridgeModule; import org.codehaus.plexus.DefaultContainerConfiguration; import org.codehaus.plexus.DefaultPlexusContainer; import org.codehaus.plexus.PlexusContainer;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Feb 10 23:18:32 UTC 2025 - 12.4K bytes - Viewed (0) -
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 Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Sep 10 17:18:47 UTC 2024 - 3.1K bytes - Viewed (0)