Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 16 of 16 for isIncludesDependencies (0.06 seconds)

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

            }
            return new DefaultType(
                    type.id(),
                    type.getLanguage(),
                    type.getExtension(),
                    type.getClassifier(),
                    type.isIncludesDependencies(),
                    type.getPathTypes().toArray(new PathType[0]));
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jul 18 22:21:33 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifact.java

                return "pom";
            }
    
            @Override
            @Deprecated
            public boolean isAddedToClasspath() {
                return false;
            }
    
            @Override
            public boolean isIncludesDependencies() {
                return false;
            }
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  3. compat/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java

         * Returns the default classifier used if a different one is not set in pom.xml.
         *
         * @return the classifier
         */
        String getClassifier();
    
        String getPackaging();
    
        boolean isIncludesDependencies();
    
        String getLanguage();
    
        /**
         * Specifies if the artifact contains java classes and can be added to the classpath.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * This is the case for JEE packages or similar artifacts such as
         * WARs, EARs, etc.
         *
         * @return if the artifact's dependencies are included in the artifact
         */
        boolean isIncludesDependencies();
    
        /**
         * Types of path (class-path, module-path, …) where the dependency can be placed.
         * For most deterministic builds, the array length should be 1. In such case,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                    pomRepositories = rel.project.getRemoteArtifactRepositories();
                }
            }
    
            Set<Artifact> artifacts = Collections.emptySet();
    
            if (!artifact.getArtifactHandler().isIncludesDependencies()) {
                artifacts = new LinkedHashSet<>();
    
                for (Dependency dependency : dependencies) {
                    Artifact dependencyArtifact = createDependencyArtifact(dependency, artifact, pomArtifact);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 25 12:03:50 GMT 2025
    - 30.4K bytes
    - Click Count (0)
  6. impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                            handler.getClassifier(),
                            handler.getLanguage(),
                            handler.isAddedToClasspath(),
                            handler.isIncludesDependencies())
                    : null;
        }
    
        public static Dependency toDependency(
                org.apache.maven.model.Dependency dependency, ArtifactTypeRegistry stereotypes) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 04 18:33:16 GMT 2025
    - 15.8K bytes
    - Click Count (0)
Back to Top