- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for propertyName (0.23 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
/** Stores the value lines for the currently processed property.*/ private final List<String> valueLines; /** Stores the name of the last read property.*/ private String propertyName; /** Stores the value of the last read property.*/ private String propertyValue; private boolean maybeTyped; /** Stores if the properties are typed or not */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
Matcher matcher = EXPRESSION_PROJECT_NAME_PATTERN.matcher(s); while (matcher.find()) { String propertyName = matcher.group(0); if (path.startsWith("activation.file.") && "${project.basedir}".equals(propertyName)) { continue; } addViolation( problems,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenPropertiesLoader.java
substitute(sp, callback); sp.forEach(properties::setProperty); } public static void substitute(MavenProperties props, Function<String, String> callback) { for (Enumeration<?> e = props.propertyNames(); e.hasMoreElements(); ) { String name = (String) e.nextElement(); String value = props.getProperty(name); if (value == null) { value = callback.apply(name);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0)