Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for loadProperties (0.05 sec)

  1. compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesLoaderTest.java

            assertThrows(
                    NoSuchFileException.class, () -> MavenPropertiesLoader.loadProperties(p, mavenUserProps, null, false));
    
            Path another = propsPath.resolveSibling("another.properties");
            Files.writeString(another, "bar = chti${java.version}\n");
            MavenPropertiesLoader.loadProperties(p, mavenUserProps, null, false);
            assertEquals("chti11z", p.getProperty("fro"));
        }
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Dec 01 19:41:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    org/codehaus/plexus/util/PropertyUtils.class package org.codehaus.plexus.util; public synchronized class PropertyUtils { public void PropertyUtils(); public static java.util.Properties loadProperties(java.net.URL); public static java.util.Properties loadProperties(java.io.File); public static java.util.Properties loadProperties(java.io.InputStream); } org/codehaus/plexus/util/reflection/Reflector.class package org.codehaus.plexus.util.reflection; public final synchronized class Reflector { private static...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  6. 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)
  7. 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