Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Platte (0.2 sec)

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

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Collects, flattens and resolves dependencies.
     */
    @Experimental
    public interface DependencyResolver extends Service {
    
        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
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <description>
                A version range which specifies the supported Java versions. A version range can either use the usual mathematical syntax "[2.0.10,2.1.0),[3.0,)" or use a single version "2.2.1". The latter is a short form for "[2.2.1,)", i.e. denotes the minimum version required.
                @since Maven 4.0.0-alpha-3
              </description>
              <type>String</type>
            </field>
            <field>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                            continue;
                        }
                        subdir = path;
                    }
                    // When the same module is found in main and test output, the latter is patching the former.
                    addPathElement(JavaPathType.patchModule(moduleName), subdir);
                    addToClasspath = false;
                }
                /*
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

    /**
     * Information about the modules contained in a path element.
     * The path element may be a JAR file or a directory. Directories may use either package hierarchy
     * or module hierarchy, but not module source hierarchy. The latter is excluded because this class
     * is for path elements of compiled codes.
     */
    class PathModularization {
        /**
         * A unique constant for all non-modular dependencies.
         */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        }
    
        @Nonnull
        @Override
        public List<Node> flattenDependencies(@Nonnull Node node, @Nonnull PathScope scope) {
            return getService(DependencyResolver.class).flatten(this, node, scope);
        }
    
        @Override
        public List<Path> resolveDependencies(DependencyCoordinate dependency) {
            return getService(DependencyResolver.class).resolve(this, dependency).getPaths();
        }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                            continue;
                        }
                        subdir = path;
                    }
                    // When the same module is found in main and test output, the latter is patching the former.
                    addPathElement(JavaPathType.patchModule(moduleName), subdir);
                    addToClasspath = false;
                }
                /*
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

    import static org.apache.maven.internal.impl.Utils.nonNull;
    
    @Named
    @Singleton
    public class DefaultDependencyResolver implements DependencyResolver {
    
        @Override
        public List<Node> flatten(Session s, Node node, PathScope scope) throws DependencyResolverException {
            InternalSession session = InternalSession.from(s);
            DependencyNode root = cast(AbstractNode.class, node, "node").getDependencyNode();
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        }
    
        @Nonnull
        @Override
        public List<Node> flattenDependencies(@Nonnull Node node, @Nonnull PathScope scope) {
            return getService(DependencyResolver.class).flatten(this, node, scope);
        }
    
        @Override
        public List<Path> resolveDependencies(DependencyCoordinate dependency) {
            return getService(DependencyResolver.class).resolve(this, dependency).getPaths();
        }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/rtinfo/RuntimeInformation.java

        /**
         * Checks whether the current Maven runtime matches the specified version range. A version range can either use the
         * usual mathematical syntax "[2.0.10,2.1.0),[3.0,)" or use a single version "2.2.1". The latter is a short form for
         * "[2.2.1,)", i.e. denotes the minimum version required.
         *
         * @param versionRange The version range to match the current Maven runtime against, must not be {@code null}.
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

    /**
     * Information about the modules contained in a path element.
     * The path element may be a JAR file or a directory. Directories may use either package hierarchy
     * or module hierarchy, but not module source hierarchy. The latter is excluded because this class
     * is for path elements of compiled codes.
     */
    class PathModularization {
        /**
         * A unique constant for all non-modular dependencies.
         */
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
Back to top