Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DependencyResolverException (0.52 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverException.java

     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.annotations.Experimental;
    
    @Experimental
    public class DependencyResolverException extends MavenException {
    
        private static final long serialVersionUID = 1101171569179057614L;
    
        public DependencyResolverException(String message, Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

                    throw cannotReadModuleInfo(path, e);
                }
            }
            return result;
        }
    
        private static DependencyResolverException cannotReadModuleInfo(final Path path, final IOException cause) {
            return new DependencyResolverException("Cannot read module information of " + path, cause);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

        List<Node> flatten(Session session, Node node, PathScope scope) throws DependencyResolverException;
    
        /**
         * This method collects, flattens and resolves the dependencies.
         *
         * @param request the request to resolve
         * @return the result of the resolution
         * @throws DependencyCollectorException
         * @throws DependencyResolverException
         * @throws ArtifactResolverException
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @param scope build path scope (main compile, test compile, etc.) of desired nodes
         * @return flattened list of node with the given build path scope
         * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed
         *
         * @see org.apache.maven.api.services.DependencyResolver#flatten(Session, Node, PathScope)
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
Back to top