- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for UnresolvableModelException (0.16 seconds)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java
/** * Signals an error when resolving the path to an external model. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class UnresolvableModelException extends Exception { /** * The group id of the unresolvable model. */ private final String groupId; /** * The artifact id of the unresolvable model. */Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.9K bytes - Click Count (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java
parent.setArtifactId("artifact"); parent.setVersion("0"); UnresolvableModelException e = assertThrows( UnresolvableModelException.class, () -> newModelResolver().resolveModel(parent), "Expected 'UnresolvableModelException' not thrown."); assertNotNull(e.getMessage());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 7.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java
* @return The source of the requested POM, never {@code null}. * @throws UnresolvableModelException If the POM could not be resolved from any configured repository. */ ModelSource resolveModel(String groupId, String artifactId, String version) throws UnresolvableModelException; /** * Tries to resolve the POM for the specified parent coordinates possibly updating {@code parent}.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 5.8K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/WorkspaceModelResolver.java
public interface WorkspaceModelResolver { Model resolveRawModel(String groupId, String artifactId, String versionConstraint) throws UnresolvableModelException; Model resolveEffectiveModel(String groupId, String artifactId, String versionConstraint) throws UnresolvableModelException;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 1.3K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java
}; } @Override public ModelSource resolveModel(Parent parent) throws UnresolvableModelException { return null; } @Override public ModelSource resolveModel(Dependency dependency) throws UnresolvableModelException { return null; } @OverrideCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 5.2K bytes - Click Count (0)