Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for flattening (0.12 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                        + "  2. Enable flattening by setting the property 'maven.consumer.pom.flatten=true' to remove mixins during transformation"
                        + System.lineSeparator()
                        + "  3. Remove the mixins from your POM");
            }
    
            // Check if consumer POM flattening is disabled
            if (!flattenEnabled) {
                // When flattening is disabled, treat non-POM projects like parent POMs
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 27 07:40:26 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java

    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * A result of collecting, flattening, and resolving {@link DependencyCoordinates}s.
     * Dependency is the output of the <dfn>collection</dfn> process, which builds the graph of dependencies,
     * followed by <dfn>flattening</dfn> and <dfn>resolution</dfn>.
     * The version selection is done for each dependency during the collection phase.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java

            return doGet(userProperties, Constants.MAVEN_CONSUMER_POM, !mavenMaven3Personality(userProperties));
        }
    
        /**
         * Check if consumer POM flattening is enabled.
         */
        public static boolean consumerPomFlatten(@Nullable Map<String, ?> userProperties) {
            return doGet(userProperties, Constants.MAVEN_CONSUMER_POM_FLATTEN, false);
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 31 11:36:12 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     *
     * <p><dfn>Dependency collection</dfn> builds a graph of {@link org.apache.maven.api.Node} objects containing
     * all the dependencies.</p>
     *
     * <p>The <dfn>Dependency graph flattening</dfn> process in Maven reduces a complex,
     * multi-level dependency graph to a map of ordered lists that can be turned into classpaths.
     * During this process only the most relevant version of each artifact
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:13:42 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractor.java

     *
     * <p>Features:
     * <ul>
     *   <li>Structured text extraction with key-value pairs</li>
     *   <li>Top-level field extraction as metadata</li>
     *   <li>Nested structure flattening with configurable depth</li>
     *   <li>Array element extraction</li>
     *   <li>Configurable field separator and array formatting</li>
     * </ul>
     */
    public class JsonExtractor extends AbstractExtractor {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * @return flattened list of node with the given build path scope
         * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed
         *
         * @see org.apache.maven.api.services.DependencyResolver#flatten(Session, Node, PathScope)
         */
        @Nonnull
        List<Node> flattenDependencies(@Nonnull Node node, @Nonnull PathScope scope);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top