Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getDispatchedPaths (0.27 sec)

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

         * identified by {@link PathType}.</p>
         *
         * @return file paths to place on the different tool options
         */
        @Nonnull
        Map<PathType, List<Path>> getDispatchedPaths();
    
        @Nonnull
        Map<Dependency, Path> getDependencies();
    
        /**
         * Formats the command-line option for the path of the specified type.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

     * Path types are often exclusive. For example, a dependency should not be
     * both on the Java class-path and on the Java module-path.
     *
     * @see org.apache.maven.api.services.DependencyResolverResult#getDispatchedPaths()
     *
     * @since 4.0.0
     */
    @Experimental
    public interface PathType {
        /**
         * The type for all paths that could not be placed in any of the types requested by a caller.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                            .dependency(dependency)
                            .pathScope(scope)
                            .pathTypeFilter(desiredTypes)
                            .build())
                    .getDispatchedPaths();
        }
    
        @Override
        public Map<PathType, List<Path>> resolveDependencies(
                @Nonnull Project project, @Nonnull PathScope scope, @Nonnull Collection<PathType> desiredTypes) {
    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)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                            .dependency(dependency)
                            .pathScope(scope)
                            .pathTypeFilter(desiredTypes)
                            .build())
                    .getDispatchedPaths();
        }
    
        @Override
        public Map<PathType, List<Path>> resolveDependencies(
                @Nonnull Project project, @Nonnull PathScope scope, @Nonnull Collection<PathType> desiredTypes) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 27.3K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        List<Path> resolveDependencies(@Nonnull Project project, @Nonnull PathScope scope);
    
        /**
         * Shortcut for {@code getService(DependencyResolver.class).resolve(...).getDispatchedPaths()}.
         *
         * @param dependencyCoordinate coordinate of the dependency for which to get the paths
         * @param scope build path scope (main compile, test compile, etc.) of desired paths
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 30K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     *
     * <p>Path types are often exclusive. For example, a dependency should not be both on the Java class-path
     * and on the Java module-path.</p>
     *
     * @see org.apache.maven.api.services.DependencyResolverResult#getDispatchedPaths()
     *
     * @since 4.0.0
     */
    @Experimental
    public enum JavaPathType implements PathType {
        /**
         * The path identified by the Java {@code --class-path} option.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

            return nodes;
        }
    
        @Override
        public List<Path> getPaths() {
            return paths;
        }
    
        @Override
        public Map<PathType, List<Path>> getDispatchedPaths() {
            return dispatchedPaths;
        }
    
        @Override
        public Map<Dependency, Path> getDependencies() {
            return dependencies;
        }
    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)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

            return nodes;
        }
    
        @Override
        public List<Path> getPaths() {
            return paths;
        }
    
        @Override
        public Map<PathType, List<Path>> getDispatchedPaths() {
            return dispatchedPaths;
        }
    
        @Override
        public Map<Dependency, Path> getDependencies() {
            return dependencies;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
Back to top