Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FileModelSource (0.07 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java

                        case "test:import:pom":
                            return new FileModelSource(new File(getClass()
                                    .getResource("/poms/depmgmt/import.xml")
                                    .getFile()));
                        case "test:other:pom":
                            return new FileModelSource(new File(getClass()
                                    .getResource("/poms/depmgmt/other-import.xml")
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

            return this;
        }
    
        @Override
        public synchronized ModelSource getModelSource() {
            if (modelSource == null && pomPath != null) {
                modelSource = new FileModelSource(pomPath);
            }
            return modelSource;
        }
    
        @Override
        public DefaultModelBuildingRequest setModelSource(ModelSource modelSource) {
            this.modelSource = modelSource;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * build the model for a POM from the repository, use {@link #setModelSource(ModelSource)} in combination with a
         * {@link FileModelSource} instead.
         *
         * @param pomFile The POM file of the project to build the effective model for, may be {@code null} to build the
         *            model of some POM from the repository.
    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