Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for loadProperties (0.44 sec)

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

        public static final String OVERRIDE_PREFIX =
                "maven.override."; // prefix that marks that system property should override defaults.
    
        public static void loadProperties(
                java.util.Properties properties, Path path, UnaryOperator<String> callback, boolean escape)
                throws IOException {
            MavenProperties sp = new MavenProperties(false);
    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

        public static final String OVERRIDE_PREFIX =
                "maven.override."; // prefix that marks that system property should override defaults.
    
        public static void loadProperties(
                java.util.Properties properties, Path path, UnaryOperator<String> callback, boolean escape)
                throws IOException {
            MavenProperties sp = new MavenProperties(false);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                    systemProperties::getProperty);
            Path propertiesFile = mavenConf.resolve("maven-system.properties");
            try {
                MavenPropertiesLoader.loadProperties(systemProperties, propertiesFile, callback, false);
            } catch (IOException e) {
                throw new IllegalStateException("Error loading properties from " + propertiesFile, e);
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  4. gradle/wrapper/gradle-wrapper.jar

    final class WrapperExecutor { public final java.util.Properties properties; public final java.io.File propertiesFile; public final WrapperConfiguration config; public void WrapperExecutor(java.io.File, java.util.Properties); public static void loadProperties(java.io.File, java.util.Properties); public final String readDistroUrl(); public final String getProperty(String, String); public final int getProperty(int); public final boolean getProperty(boolean); public final String getProperty(String, String,...
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Oct 30 01:56:29 UTC 2025
    - 44.6K bytes
    - Viewed (1)
  5. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
            Path systemPropertiesFile = mavenConf.resolve("maven-system.properties");
            MavenPropertiesLoader.loadProperties(systemProperties, systemPropertiesFile, callback, false);
            Path userPropertiesFile = mavenConf.resolve("maven-user.properties");
            MavenPropertiesLoader.loadProperties(userProperties, userPropertiesFile, callback, false);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
Back to top