Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for isIncludesDependencies (0.09 seconds)

  1. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultType.java

        public String getExtension() {
            return extension;
        }
    
        @Override
        public String getClassifier() {
            return classifier;
        }
    
        @Override
        public boolean isIncludesDependencies() {
            return this.includesDependencies;
        }
    
        public Map<String, String> getProperties() {
            return properties;
        }
    
        @Override
        public Set<PathType> getPathTypes() {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Mar 19 13:42:58 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  2. 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 Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  3. 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 Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Sep 25 12:03:50 GMT 2025
    - 30.4K bytes
    - Click Count (0)
  4. 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 Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Sep 04 18:33:16 GMT 2025
    - 15.8K bytes
    - Click Count (0)
Back to Top