Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for minimo (0.21 sec)

  1. apache-maven/README.txt

      System Requirements
      -------------------
    
      JDK:
        8 or above (this is to execute Maven - it still allows you to build against 1.3
        and prior JDK's).
      Memory:
        No minimum requirement.
      Disk:
        Approximately 10MB is required for the Maven installation itself. In addition to
        that, additional disk space will be used for your local Maven repository. The size
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/complete-model/w-parent/pom.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng</groupId>
      <artifactId>parent</artifactId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <!-- minimal parent just to have one more level of inheritance -->
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest();
            configuration.setValidationLevel(ModelBuildingRequest.VALIDATION_LEVEL_MINIMAL);
            configuration.setRepositorySession(mavenSession.getRepositorySession());
            org.apache.maven.project.ProjectBuilder projectBuilder =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

            request.setRemoteRepositories(normalizeToArtifactRepositories(remoteRepositories, request));
            request.setProcessPlugins(false);
            request.setValidationLevel(ModelBuildingRequest.VALIDATION_LEVEL_MINIMAL);
    
            try {
                return projectBuilder.build(artifact, allowStubModel, request).getProject();
            } catch (ProjectBuildingException e) {
                throw transformError(e);
            }
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * The head of returned list is result of {@link Project#getArtifacts()} method, so same applies here: the list can have
         * minimum of one element. The maximum number of elements is in turn dependent on build configuration and lifecycle
         * phase when this method was invoked (i.e. is javadoc jar built and attached, is sources jar built attached, are
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Builds the full lifecycle in weave-mode (phase by phase as opposed to project-by-project).
     * <p>
     * This builder uses a number of threads equal to the minimum of the degree of concurrency (which is the thread count
     * set with <code>-T</code> on the command-line) and the number of projects to build. As such, building a single project
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.4K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                        configuration.setRemoteRepositories(repositoryRequest.getRemoteRepositories());
                        configuration.setValidationLevel(ModelBuildingRequest.VALIDATION_LEVEL_MINIMAL);
                        configuration.setProcessPlugins(false);
                        configuration.setRepositoryMerging(ProjectBuildingRequest.RepositoryMerging.REQUEST_DOMINANT);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Agreement is invalid or unenforceable under applicable 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 (excluding combinations of the Program...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  9. 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 Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  10. 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(
                    new DefaultModelResolver(remoteRepositoryManager, project.getRemoteProjectRepositories()));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 11.6K bytes
    - Viewed (0)
Back to top