Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for rootDirectory (0.06 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // This is used to compute {@code session.rootDirectory} but all {@code project.rootDirectory}
            // properties will be computed through the RootLocator found in the container.
            RootLocator rootLocator =
                    ServiceLoader.load(RootLocator.class).iterator().next();
            cliRequest.rootDirectory = rootLocator.findRoot(topDirectory);
    
            //
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                Map<String, Object> options = new HashMap<>(3);
                options.put(ModelProcessor.IS_STRICT, strict);
                options.put(ModelProcessor.SOURCE, modelSource);
                options.put(ModelReader.ROOT_DIRECTORY, request.getRootDirectory());
    
                InputSource source;
                if (request.isLocationTracking()) {
                    source = new InputSource(null, modelSource.getLocation());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
Back to top