Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenPropertiesLoader.java

                    props.put(name, substVars(value, name, props, callback));
                }
            }
            props.keySet().removeIf(k -> k.startsWith(OVERRIDE_PREFIX));
        }
    
        private static MavenProperties loadPropertiesFile(Path path, boolean failIfNotFound, UnaryOperator<String> callback)
                throws IOException {
            MavenProperties configProps = new MavenProperties(null, false);
            if (Files.exists(path) || failIfNotFound) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenPropertiesLoader.java

                    props.put(name, substVars(value, name, props, callback));
                }
            }
            props.keySet().removeIf(k -> k.startsWith(OVERRIDE_PREFIX));
        }
    
        private static MavenProperties loadPropertiesFile(Path path, boolean failIfNotFound, UnaryOperator<String> callback)
                throws IOException {
            MavenProperties configProps = new MavenProperties(null, false);
            if (Files.exists(path) || failIfNotFound) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top