Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getPathTypes (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/TypeRegistryAdapter.java

                        type.getLanguage(),
                        type.getExtension(),
                        type.getClassifier(),
                        type.isIncludesDependencies(),
                        type.getPathTypes().toArray(new PathType[0]));
            }
            return null;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultType.java

            return classifier;
        }
    
        @Override
        public boolean isIncludesDependencies() {
            return this.includesDependencies;
        }
    
        public Set<PathType> getPathTypes() {
            return this.pathTypes;
        }
    
        @Override
        public Map<String, String> getProperties() {
            return properties;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

                        type.getClassifier(),
                        null,
                        null,
                        type.isIncludesDependencies(),
                        type.getLanguage().id(),
                        type.getPathTypes().contains(JavaPathType.CLASSES));
                // TODO: watch out for module path
            });
    
            // Note: here, type decides is artifact added to "build path" (for example during resolution)
    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)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * case, the plugin may apply rules for choosing a path. See for example
         * {@link JavaPathType#CLASSES} and {@link JavaPathType#MODULES}.</p>
         */
        @Nonnull
        Set<PathType> getPathTypes();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

             * been added on the module-type.
             */
            // DependencyProperties properties = dep.getDependencyProperties();
            Set<PathType> pathTypes = dep.getType().getPathTypes();
            if (containsPatches(pathTypes)) {
                if (outputModules == null) {
                    // For telling users that it is too late for setting the output directory.
    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)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

             * been added on the module-type.
             */
            // DependencyProperties properties = dep.getDependencyProperties();
            Set<PathType> pathTypes = dep.getType().getPathTypes();
            if (containsPatches(pathTypes)) {
                if (outputModules == null) {
                    // For telling users that it is too late for setting the output directory.
    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)
Back to top