Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gotPaths (0.11 sec)

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

         * null elements.
         *
         * @return the paths of all dependencies
         */
        @Nonnull
        List<Path> getPaths();
    
        /**
         * Returns the file paths of all dependencies, dispatched according the tool options where to place them.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            return getService(DependencyResolver.class).resolve(this, dependency).getPaths();
        }
    
        @Override
        public List<Path> resolveDependencies(List<DependencyCoordinate> dependencies) {
            return getService(DependencyResolver.class).resolve(this, dependencies).getPaths();
        }
    
        @Override
        public List<Path> resolveDependencies(Project project, PathScope scope) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        List<Node> flattenDependencies(@Nonnull Node node, @Nonnull PathScope scope);
    
        /**
         * Shortcut for {@code getService(DependencyResolver.class).resolve(...).getPaths()}.
         *
         * @param dependencyCoordinate coordinate of the dependency for which to get the paths
         * @return paths to the transitive dependencies of the given dependency
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

        @Override
        public Node getRoot() {
            return root;
        }
    
        @Override
        public List<Node> getNodes() {
            return nodes;
        }
    
        @Override
        public List<Path> getPaths() {
            return paths;
        }
    
        @Override
        public Map<PathType, List<Path>> getDispatchedPaths() {
            return dispatchedPaths;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top