- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for loadProperties (0.43 sec)
-
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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
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, Function<String, String> callback, boolean escape) throws IOException { MavenProperties sp = new MavenProperties(false);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
} else { mavenConf = context.installationDirectory.resolve(""); } Path propertiesFile = mavenConf.resolve("maven.properties"); MavenPropertiesLoader.loadProperties(userProperties, propertiesFile, callback, false); // CLI specified properties are most dominant userProperties.putAll(userSpecifiedProperties); return toMap(userProperties); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
.teamcity/.mvn/wrapper/maven-wrapper.jar
void WrapperExecutor(java.io.File, java.util.Properties, Appendable); private java.net.URI prepareDistributionU() throws java.net.URISyntaxException; private java.net.URI readDistroUrl() throws java.net.URISyntaxException; private static void loadProperties(java.io.File, java.util.Properties) throws java.io.IOException; public java.net.URI getDistribution(); public WrapperConfiguration getConfiguration(); public void execute(String[], Installer, BootstrapMainStarter) throws Exception; private String...
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 26 01:48:39 UTC 2020 - 49.5K bytes - Viewed (0) -
gradle/wrapper/gradle-wrapper.jar
synchronized 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 Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 24 09:00:26 UTC 2023 - 42.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} else { mavenConf = fileSystem.getPath(""); } Path propertiesFile = mavenConf.resolve("maven.properties"); MavenPropertiesLoader.loadProperties(userProperties, propertiesFile, callback, false); // ---------------------------------------------------------------------- // I'm leaving the setting of system properties here as not to break
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
test-site/activator-launch-1.3.2.jar
boolean); public final void loadDefault(); public final void setSettingsVariables(java.io.File); private void setDeprecatedVariabl(String, String); public final void setSettingsVariables(java.net.URL); private void dumpSettings(); public final void loadProperties(java.net.URL, boolean); public final void setVariable(String, String); public final void setVariable(String, String, boolean); private void addAllVariables(java.util.Map, boolean); public final String substitute(String); public final IvyVariableContainer...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0)