Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for minima (0.2 sec)

  1. maven-core/src/site/apt/inheritance.apt

      accommodate changes in the model will be named accordingly - 4.0.1, 4.0.2, ...).
    
    Minimum Element-Set for a Project POM
    
      In order to furnish a basic set of information which we need to distinguish one
      project from another, maven requires a minimum set of elements to be specified
      in each project's pom.xml.
    
       - [modelVersion] tells maven which version of the object model this project
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 3.5K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    + Respect the original code style: by using the same [codestyle][code-style],
      patches should only highlight the actual difference, not being disturbed by any formatting issues:
      + Only use spaces for indentation.
      + Create minimal diffs - disable on save actions like reformat source code or organize imports.
        If you feel the source code should be reformatted, create a separate PR for this change.
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/rtinfo/RuntimeInformation.java

         * usual mathematical syntax "[2.0.10,2.1.0),[3.0,)" or use a single version "2.2.1". The latter is a short form for
         * "[2.2.1,)", i.e. denotes the minimum version required.
         *
         * @param versionRange The version range to match the current Maven runtime against, must not be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

        /**
         * In the future, the legacy system might encounter repository types for which no layout components exists because
         * the actual communication with the repository happens via a repository connector. As a minimum, the legacy system
         * needs to retain the id of this layout so that the content type of the remote repository can still be accurately
         * described.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                                    .withRemoteRepositories(
                                            request.getModelRepositoryHolder().getRepositories()))
                            .validationLevel(ModelBuilderRequest.VALIDATION_LEVEL_MINIMAL)
                            .systemProperties(request.getSystemProperties())
                            .userProperties(request.getUserProperties())
                            .source(importSource)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

              <defaultValue>2.0</defaultValue>
              <description><![CDATA[
                For a plugin project (packaging is {@code maven-plugin}), the minimum version of
                Maven required to use the resulting plugin.<br>
                In Maven 2, this was also specifying the minimum version of Maven required to build a
                project, but this usage is <b>deprecated</b> in Maven 3 and not checked any more: use
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ModelBuilderRequest {
    
        /**
         * Denotes minimal validation of POMs. This validation level is meant for processing of POMs from repositories
         * during metadata retrieval.
         */
        int VALIDATION_LEVEL_MINIMAL = 0;
    
        /**
         * Denotes validation as performed by Maven 2.0. This validation level is meant as a compatibility mode to allow
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            request.projectBuild(true);
            request.session(InternalSession.from(session));
            request.source(ModelSource.fromPath(src));
            request.validationLevel(ModelBuilderRequest.VALIDATION_LEVEL_MINIMAL);
            request.locationTracking(false);
            request.modelResolver(modelResolver);
            request.transformerContextBuilder(modelBuilder.newTransformerContextBuilder());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    law, it shall not affect the validity or enforceability of the remainder of
    the terms of this Agreement, and without further action by the parties hereto,
    such provision shall be reformed to the minimum extent necessary to make such
    provision valid and enforceable.
    
    If Recipient institutes patent litigation against any entity (including a
    cross-claim or counterclaim in a lawsuit) alleging that the Program itself
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  10. api/maven-api-plugin/src/main/mdo/plugin.mdo

                @since Maven 4.0.0-alpha-3
              </description>
              <type>String</type>
            </field>
            <field>
              <name>requiredMavenVersion</name>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
Back to top