Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getModelSource (0.08 sec)

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

         * @param request The request to copy, must not be {@code null}.
         */
        public DefaultModelBuildingRequest(ModelBuildingRequest request) {
            setPomPath(request.getPomPath());
            setModelSource(request.getModelSource());
            setValidationLevel(request.getValidationLevel());
            setProcessPlugins(request.isProcessPlugins());
            setTwoPhaseBuilding(request.isTwoPhaseBuilding());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        ModelBuildingRequest setRawModel(Model rawModel);
    
        /**
         * Gets the source of the POM to process.
         *
         * @return The source of the POM or {@code null} if not set.
         */
        ModelSource getModelSource();
    
        /**
         * Sets the source of the POM to process. Eventually, either {@link #setModelSource(ModelSource)} or
         * {@link #setPomPath(Path)} must be set.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top