Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UnresolvableModelException (0.24 sec)

  1. 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 {@link 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.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java

                    .artifactId("artifact")
                    .version("0")
                    .build();
    
            UnresolvableModelException e = assertThrows(
                    UnresolvableModelException.class,
                    () -> newModelResolver().resolveModel(parent, new AtomicReference<>()),
                    "Expected 'UnresolvableModelException' not thrown.");
            assertNotNull(e.getMessage());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. 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}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. 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;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top