Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for validationLevel (0.22 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuilder.java

         */
        @Deprecated
        Result<? extends Model> buildRawModel(File pomFile, int validationLevel, boolean locationTracking);
    
        /**
         * Performs only the part of {@link ModelBuilder#build(ModelBuildingRequest)} that loads the raw model
         *
         * @since 4.0.0
         */
        Result<? extends Model> buildRawModel(Path pomFile, int validationLevel, boolean locationTracking);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:27:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

        @Override
        public int getValidationLevel() {
            return request.getValidationLevel();
        }
    
        @Override
        public FilterModelBuildingRequest setValidationLevel(int validationLevel) {
            request.setValidationLevel(validationLevel);
    
            return this;
        }
    
        @Override
        public boolean isProcessPlugins() {
            return request.isProcessPlugins();
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

     * the problem.
     *
     */
    public interface ModelProblem extends BuilderProblem {
    
        /**
         * Version
         */
        enum Version {
            // based on ModeBuildingResult.validationLevel
            BASE,
            V20,
            V30,
            V31,
            V40
        }
    
        /**
         * Gets the identifier of the model from which the problem originated. While the general form of this identifier is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

    import static org.apache.maven.api.services.BaseRequest.nonNull;
    
    /**
     * Request used to build a {@link org.apache.maven.api.Project} using
     * the {@link ProjectBuilder} service.
     *
     * TODO: add validationLevel, activeProfileIds, inactiveProfileIds, resolveDependencies
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ProjectBuilderRequest {
    
        @Nonnull
        Session getSession();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top